|
@@ -121,6 +121,19 @@
|
|
|
<vxe-table-column field="mahName" title="产品所属生产企业" width="200"></vxe-table-column>
|
|
|
<vxe-table-column field="skuName" title="关联产品名称" width="200"></vxe-table-column>
|
|
|
<vxe-table-column field="provAbbr" title="执行包所属省份" width="130"></vxe-table-column>
|
|
|
+ <vxe-table-column field="taskStatus" title="审核状态" width="130">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div v-if="scope.row.taskStatus === '2'">
|
|
|
+ <div>待服务商审核</div>
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.taskStatus === '3'">
|
|
|
+ <div>审核通过</div>
|
|
|
+ </div>
|
|
|
+ <div v-else-if="scope.row.taskStatus === '4'">
|
|
|
+ <div>审核拒绝</div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </vxe-table-column>
|
|
|
<vxe-table-column title="已审批节点" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<div class="btns">
|