This commit is contained in:
linfso 2025-06-18 19:31:21 +08:00
parent d1f206894f
commit 2ffad6847d

View File

@ -152,7 +152,7 @@
<el-table-column :label="$t('月结70%回款率')" align="center" prop="totalMonthRecd70Rate" min-width="160" >
<template slot-scope="scope">
<span v-if="scope.row.totalMonthRecd70Rate!=null">{{ (scope.row.totalMonthRecd70Rate*100).toFixed(2) }}%</span>
<span v-if="scope.row.totalMonthRecd70Rate!=null">{{ (scope.row.totalMonthRecd70Rate*0.7*100).toFixed(2) }}%</span>
<span v-else>0%</span>
</template>
</el-table-column>
@ -160,7 +160,7 @@
<el-table-column :label="$t('月结总回款率')" align="center" prop="totalMonthRecdRate" min-width="160">
<template slot-scope="scope">
<span v-if="scope.row.totalMonthRecdInRate!=null&&scope.row.totalMonthRecd70Rate!=null">
{{ ((scope.row.totalMonthRecdInRate+scope.row.totalMonthRecd70Rate)*100).toFixed(2) }}%
{{ ((scope.row.totalMonthRecdInRate+scope.row.totalMonthRecd70Rate*0.7)*100).toFixed(2) }}%
</span>
<span v-else>0%</span>
</template>