|
|
@@ -57,13 +57,15 @@
|
|
|
<el-table-column prop="receivablePremium" label="应收总额"></el-table-column>
|
|
|
<el-table-column prop="reconciliationAmount" label="对账金额">
|
|
|
<template #default="scope">
|
|
|
- <div class="flex items-center cursor-pointer" @click="handleEdit(scope.row, scope.$index)"
|
|
|
+ <span v-if="scope.row.invoiced > 0">¥{{ scope.row.reconciliationAmount || 0 }}</span>
|
|
|
+ <div v-else class="flex items-center cursor-pointer" @click="handleEdit(scope.row, scope.$index)"
|
|
|
@mouseenter="scope.row.showEdit = true" @mouseleave="scope.row.showEdit = false">
|
|
|
¥{{ scope.row.reconciliationAmount || 0 }}
|
|
|
<el-icon class="m-l-4px " v-if="scope.row.showEdit">
|
|
|
<Edit />
|
|
|
</el-icon>
|
|
|
</div>
|
|
|
+
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="falselyIncreasedDifference" label="虚增金额"></el-table-column>
|