|
@@ -156,12 +156,12 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="amountStatus" label="合同状态" width="100">
|
|
|
<template #default="scope">
|
|
|
- {{ scope.row.contractAmount === scope.row.returnAmount ? '已付清' : '未付清' }}
|
|
|
+ {{ scope.row.virtualAmount === scope.row.returnAmount ? '已付清' : '未付清' }}
|
|
|
<!-- {{ getDictLabel(DICT_TYPE.CONTRACT_COST_STATUS, scope.row.amountStatus) }} -->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="contractAmount" label="合同金额" width="100" align="center">
|
|
|
- <template #default="scope">{{ scope.row.contractAmount ?? 0 }}</template>
|
|
|
+ <el-table-column prop="virtualAmount" label="合同金额" width="100" align="center">
|
|
|
+ <template #default="scope">{{ scope.row.virtualAmount ?? 0 }}</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="returnAmount" label="已回款金额" width="200" align="center">
|
|
|
<template #default="scope">{{ scope.row.returnAmount ?? 0 }}</template>
|