|
@@ -131,43 +131,43 @@
|
|
|
:scroll="{x: 3000}"
|
|
|
>
|
|
|
<span slot="advertiserName" slot-scope="text">
|
|
|
- <a>{{ text }}</a>
|
|
|
+ <span>{{ text }}</span>
|
|
|
</span>
|
|
|
<span slot="updatePolicyProductName" slot-scope="text">
|
|
|
<a-tooltip placement="top">
|
|
|
<template slot="title">
|
|
|
<span>{{ text }}</span>
|
|
|
</template>
|
|
|
- <a>{{ text }}</a>
|
|
|
+ <span>{{ text }}</span>
|
|
|
</a-tooltip>
|
|
|
</span>
|
|
|
<span slot="promotionType" slot-scope="text">
|
|
|
- <a>{{ text === 0 ? '自运营' : '代运营' }}</a>
|
|
|
+ <span>{{ text === 0 ? '自运营' : '代运营' }}</span>
|
|
|
</span>
|
|
|
<span slot="advancePay" slot-scope="text">
|
|
|
- <a>{{ text === 0 ? '否' : '是' }}</a>
|
|
|
+ <span>{{ text === 0 ? '否' : '是' }}</span>
|
|
|
</span>
|
|
|
<span slot="isDianPay" slot-scope="text">
|
|
|
- <a>{{ text === 0 ? '否' : '是' }}</a>
|
|
|
+ <span>{{ text === 0 ? '否' : '是' }}</span>
|
|
|
</span>
|
|
|
<span slot="updateApprovedStatus" slot-scope="text">
|
|
|
<a>{{ text }}</a>
|
|
|
</span>
|
|
|
<span slot="accountingPeriod" slot-scope="text">
|
|
|
- <a>{{ text }}</a>
|
|
|
+ <span>{{ text }}</span>
|
|
|
</span>
|
|
|
<span slot="policyStartDate" slot-scope="text, record">
|
|
|
- <span>{{ text }} 至 {{ record.policyEndDate}}</span>
|
|
|
+ <span>{{ text }} 至 {{ record.policyEndDate }}</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"/>
|
|
|
- <a v-if="record.updateOperation.includes('提交审核')" @click="handleSubmitReview(record)">提交审核</a>
|
|
|
<a-divider v-if="record.updateOperation.includes('提交审核')" type="vertical"/>
|
|
|
- <a v-if="record.updateOperation.includes('编辑')" @click="handleEditTable(record)">编辑</a>
|
|
|
+ <a v-if="record.updateOperation.includes('提交审核')" @click="handleSubmitReview(record)">提交审核</a>
|
|
|
<a-divider v-if="record.updateOperation.includes('编辑')" type="vertical"/>
|
|
|
- <a v-if="record.updateOperation.includes('审核通过')" @click="handleAuditSure(record)">审核通过</a>
|
|
|
+ <a v-if="record.updateOperation.includes('编辑')" @click="handleEditTable(record)">编辑</a>
|
|
|
<a-divider v-if="record.updateOperation.includes('审核通过')" type="vertical"/>
|
|
|
+ <a v-if="record.updateOperation.includes('审核通过')" @click="handleAuditSure(record)">审核通过</a>
|
|
|
+ <a-divider v-if="record.updateOperation.includes('审核拒绝')" type="vertical"/>
|
|
|
<a v-if="record.updateOperation.includes('审核拒绝')" @click="handleAuditCancel(record)">审核拒绝</a>
|
|
|
</span>
|
|
|
<span slot="reason" slot-scope="text, record">
|