|
@@ -213,6 +213,14 @@
|
|
|
<span>{{ rowNum(scope.row.amount) }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="待收款金额" width="150" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ {{
|
|
|
+ rowNum((Number(scope.row.amount) || 0) - (Number(scope.row.arrived) || 0))
|
|
|
+ }}
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="已收款金额" prop="arrived" width="150" align="center">
|
|
|
<template #default="scope">
|
|
|
<span>{{ rowNum(scope.row.arrived) }}</span>
|
|
@@ -234,14 +242,7 @@
|
|
|
<template v-else>{{ scope.row.arriveAmount }}</template>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="待收款金额" width="150" align="center">
|
|
|
- <template #default="scope">
|
|
|
- {{
|
|
|
- rowNum((Number(scope.row.amount) || 0) - (Number(scope.row.arrived) || 0))
|
|
|
- }}
|
|
|
-
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+
|
|
|
|
|
|
<el-table-column label="备注" prop="remark" width="250" align="center">
|
|
|
<template #default="scope">
|