|
@@ -248,6 +248,13 @@
|
|
|
<span>{{ rowNum(scope.row.amount) }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
+ <el-table-column label="已收款金额" prop="arrived" width="150" align="right" header-align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <span>{{ rowNum(scope.row.arrived) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column label="待收款金额" width="150" align="center">
|
|
|
<template #default="scope">
|
|
|
{{
|
|
@@ -256,11 +263,6 @@
|
|
|
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="已收款金额" prop="arrived" width="150" align="right" header-align="center">
|
|
|
- <template #default="scope">
|
|
|
- <span>{{ rowNum(scope.row.arrived) }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="本次收款金额" prop="arriveAmount" width="150" header-align="center" align="right">
|
|
|
<template #default="scope">
|
|
|
<template v-if="editStatus">
|