|
@@ -155,12 +155,21 @@
|
|
|
<span slot="updateApprovedStatus" slot-scope="text">
|
|
|
<a>{{ text }}</a>
|
|
|
</span>
|
|
|
+ <span slot="dianPayCompanyName" slot-scope="text">
|
|
|
+ <span>{{ text ? text : '-' }}</span>
|
|
|
+ </span>
|
|
|
+ <span slot="dianPayCompanyRebateRate" slot-scope="text">
|
|
|
+ <span>{{ text ? text : '-' }}</span>
|
|
|
+ </span>
|
|
|
<span slot="accountingPeriod" slot-scope="text">
|
|
|
<span>{{ text }}</span>
|
|
|
</span>
|
|
|
<span slot="policyStartDate" slot-scope="text, record">
|
|
|
<span>{{ text }} 至 {{ record.policyEndDate }}</span>
|
|
|
</span>
|
|
|
+ <span slot="remarks" slot-scope="text">
|
|
|
+ <span>{{ text ? text : '-' }}</span>
|
|
|
+ </span>
|
|
|
<span slot="action" slot-scope="text, record">
|
|
|
<a v-if="record.updateOperation.includes('查看')" @click="handleDetail(record)">查看</a>
|
|
|
<a-divider v-if="record.updateOperation.includes('提交审核')" type="vertical"/>
|
|
@@ -745,13 +754,15 @@ export default {
|
|
|
title: '垫付公司',
|
|
|
align: 'center',
|
|
|
dataIndex: 'dianPayCompanyName',
|
|
|
- width: 150
|
|
|
+ width: 150,
|
|
|
+ scopedSlots: {customRender: 'dianPayCompanyName'}
|
|
|
},
|
|
|
{
|
|
|
title: '垫付公司返点',
|
|
|
align: 'center',
|
|
|
dataIndex: 'dianPayCompanyRebateRate',
|
|
|
- width: 150
|
|
|
+ width: 150,
|
|
|
+ scopedSlots: {customRender: 'dianPayCompanyRebateRate'}
|
|
|
},
|
|
|
{
|
|
|
title: '运营方式',
|
|
@@ -771,7 +782,8 @@ export default {
|
|
|
title: '备注',
|
|
|
align: 'center',
|
|
|
dataIndex: 'remarks',
|
|
|
- width: 190
|
|
|
+ width: 190,
|
|
|
+ scopedSlots: {customRender: 'remarks'}
|
|
|
},
|
|
|
{
|
|
|
title: '操作',
|