| | |
| | | <span class="text-danger">{{ billInfo.pendingAmount }}</span> |
| | | </el-descriptions-item> |
| | | |
| | | <el-descriptions-item label="周期类型">{{ billInfo.periodType }}</el-descriptions-item> |
| | | <!-- <el-descriptions-item label="周期类型">{{ billInfo.periodType }}</el-descriptions-item> --> |
| | | <el-descriptions-item label="周期类型">{{ dictFormat(sys_period_type,billInfo.periodType) }}</el-descriptions-item> |
| | | |
| | | <el-descriptions-item label="业务期间"> |
| | | <span v-if="billInfo.businessStartDate">{{ billInfo.businessStartDate }}</span> |
| | | <span v-if="billInfo.businessStartDate && billInfo.businessEndDate"> ~ </span> |
| | |
| | | import { getPayableBillManagement, } from "@/api/cwgl/payableBillManagement"; |
| | | |
| | | const { proxy } = useCurrentInstance() |
| | | const { sys_system, sys_business, sys_receipts, sys_supplier, sys_whether_type, sys_currency } = proxy.useDict( |
| | | const { sys_system, sys_business, sys_receipts, sys_supplier, sys_whether_type, sys_currency,sys_period_type } = proxy.useDict( |
| | | 'sys_system', |
| | | 'sys_business', |
| | | 'sys_receipts', |
| | | 'sys_supplier', |
| | | 'sys_whether_type', 'sys_currency' |
| | | 'sys_whether_type', 'sys_currency','sys_period_type' |
| | | ) |
| | | const dictFormat = (dict: any, value: any) => { |
| | | return proxy.selectDictLabel(dict, value); |