|
@@ -122,7 +122,7 @@
|
|
|
:pagination="ipagination" :loading="loading" class="j-table-force-nowrap"
|
|
|
@change="handleTableChange">
|
|
|
|
|
|
- <span slot="action" slot-scope="text, record" v-if="record.status==0||record.status=='0'">
|
|
|
+ <span slot="action" slot-scope="text, record" >
|
|
|
<span v-if="record.status==0&&record.state!=0">
|
|
|
<a-popconfirm title="确定取消?" placement="left" @confirm="handleEdits(record,0)" okText="确定" cancelText="取消" v-has='"change:lzqx"'>
|
|
|
<a>取消</a>
|
|
@@ -137,6 +137,12 @@
|
|
|
<a>拒绝</a>
|
|
|
</a-popconfirm>
|
|
|
</span>
|
|
|
+ <span v-if="record.syState==0&&record.status==1&&record.state==1">
|
|
|
+ <a-divider type="vertical" />
|
|
|
+ <a-popconfirm title="确定删除?" placement="left" @confirm="handleEdits(record,3)" okText="确定" cancelText="取消" v-has='"change:lzjj"'>
|
|
|
+ <a>删除</a>
|
|
|
+ </a-popconfirm>
|
|
|
+ </span>
|
|
|
</span>
|
|
|
|
|
|
<span slot="types" slot-scope="text, record" >
|
|
@@ -144,6 +150,11 @@
|
|
|
<a-tag color="#87d068" v-if="text=='同意'" >{{text}}</a-tag>
|
|
|
<a-tag color="#cd201f" v-if="text=='拒绝'" >{{text}}</a-tag>
|
|
|
</span>
|
|
|
+
|
|
|
+ <span slot="syDel" slot-scope="text, record" >
|
|
|
+ <a-tag color="blue" v-if="text=='未删除'" >{{text}}</a-tag>
|
|
|
+ <a-tag color="#cd201f" v-if="text=='已删除'" >{{text}}</a-tag>
|
|
|
+ </span>
|
|
|
</a-table>
|
|
|
</div>
|
|
|
<!-- table区域-end -->
|
|
@@ -304,7 +315,7 @@
|
|
|
}
|
|
|
}, */
|
|
|
{
|
|
|
- title: '状态',
|
|
|
+ title: '审核状态',
|
|
|
align: "center",
|
|
|
dataIndex: 'state_dictText',
|
|
|
sorter: true,
|
|
@@ -313,6 +324,16 @@
|
|
|
customRender: 'types'
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '企微状态',
|
|
|
+ align: "center",
|
|
|
+ dataIndex: 'syState_dictText',
|
|
|
+ sorter: true,
|
|
|
+ ellipsis: true,
|
|
|
+ scopedSlots: {
|
|
|
+ customRender: 'syDel'
|
|
|
+ },
|
|
|
+ },
|
|
|
|
|
|
{
|
|
|
title: '操作',
|