修改悬浮信息

This commit is contained in:
fengachen
2021-09-26 15:11:27 +08:00
parent 4198783ccf
commit ba27bce3c9
2 changed files with 24 additions and 4 deletions
@@ -229,6 +229,16 @@
<status-slot :statu-obj="record" :status-no="text"></status-slot>
</template>
<!-- 开票-->
<template slot="status-bill" slot-scope="text,record">
<status-slot :statu-obj="record" :status-no="text" :status-type="true" status-key="bill"></status-slot>
</template>
<!-- 邮寄-->
<template slot="status-mail" slot-scope="text,record">
<status-slot :statu-obj="record" :status-no="text" :status-type="true" status-key="mail"></status-slot>
</template>
<span slot="action" slot-scope="text, record" class="action-span-cell">
<!-- 只有缴费方式为汇款并且上传了汇款凭证的的才会有审核按钮-->
<a @click="handleAudit(record)" v-if="record.payMode === 1 && record.paymentRecord"
@@ -368,14 +378,14 @@ export default {
align: 'center',
width: 100,
dataIndex: 'makeInvoice',
scopedSlots: {customRender: 'status'}
scopedSlots: {customRender: 'status-bill'}
},
{
title: '邮寄',
align: 'center',
width: 100,
dataIndex: 'mail',
scopedSlots: {customRender: 'status'}
scopedSlots: {customRender: 'status-mail'}
},
{
title: '对接人',
@@ -94,6 +94,16 @@
<status-slot :statu-obj="record" :status-no="text"></status-slot>
</template>
<!-- 开票-->
<template slot="status-bill" slot-scope="text,record">
<status-slot :statu-obj="record" :status-no="text" :status-type="true" status-key="bill"></status-slot>
</template>
<!-- 邮寄-->
<template slot="status-mail" slot-scope="text,record">
<status-slot :statu-obj="record" :status-no="text" :status-type="true" status-key="mail"></status-slot>
</template>
<span slot="action" slot-scope="text, record" class="action-span-cell">
<a @click="handleEdit(record)">编辑</a>
<a @click="handleDelete(record.id)">删除</a>
@@ -216,13 +226,13 @@ export default {
title: '开票',
align: 'center',
dataIndex: 'makeInvoice',
scopedSlots: { customRender: 'status' },
scopedSlots: { customRender: 'status-bill' },
},
{
title: '邮寄',
align: 'center',
dataIndex: 'mail',
scopedSlots: { customRender: 'status' },
scopedSlots: { customRender: 'status-mail' },
},
],
disableMixinCreated: true,