mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 05:39:36 +08:00
修改了对应的权限记录
This commit is contained in:
parent
cab8c1637c
commit
4f3b283e55
@ -48,9 +48,9 @@
|
|||||||
<a-divider type='vertical' v-if='record.statusValue == 0 || record.statusValue == 1'/>
|
<a-divider type='vertical' v-if='record.statusValue == 0 || record.statusValue == 1'/>
|
||||||
<a v-if='removeEnable' @click='delByIds([record.id])'>删除</a>
|
<a v-if='removeEnable' @click='delByIds([record.id])'>删除</a>
|
||||||
<a-divider type='vertical' v-if='record.statusValue == 0' />
|
<a-divider type='vertical' v-if='record.statusValue == 0' />
|
||||||
<a-tag @click='verifySuccess(record.id)' v-if='record.statusValue == 0' color='green'>通过</a-tag>
|
<a-tag @click='verifySuccess(record.id)' v-if='editEnabel && record.statusValue == 0' color='green'>通过</a-tag>
|
||||||
<a-divider type='vertical' v-if='record.statusValue == 0 || record.statusValue == 1' />
|
<a-divider type='vertical' v-if='record.statusValue == 0 || record.statusValue == 1' />
|
||||||
<a-tag @click='verifyReject(record.id)' v-if='record.statusValue == 0 || record.statusValue == 1'
|
<a-tag @click='verifyReject(record.id)' v-if=' editEnabel && record.statusValue == 0 || record.statusValue == 1'
|
||||||
color='volcano'>驳回</a-tag>
|
color='volcano'>驳回</a-tag>
|
||||||
</span>
|
</span>
|
||||||
</s-table>
|
</s-table>
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
<a-divider type="vertical" />
|
<a-divider type="vertical" />
|
||||||
<a v-if="removeEnable" @click="delByIds([record.id])">删除</a>
|
<a v-if="removeEnable" @click="delByIds([record.id])">删除</a>
|
||||||
<a-divider type="vertical" />
|
<a-divider type="vertical" />
|
||||||
<a-tag @click='verifyReject(record.id)' v-if='record.status == 0 || record.status == 1'
|
<a-tag @click='verifyReject(record.id)' v-if=' rejectEnable && (record.status == 0 || record.status == 1)'
|
||||||
color='volcano'>驳回</a-tag>
|
color='volcano'>驳回</a-tag>
|
||||||
</span>
|
</span>
|
||||||
</s-table>
|
</s-table>
|
||||||
@ -182,7 +182,8 @@
|
|||||||
typeMap,
|
typeMap,
|
||||||
addEnable: checkPermission('meeting:showroomRecord:add'),
|
addEnable: checkPermission('meeting:showroomRecord:add'),
|
||||||
editEnabel: checkPermission('meeting:showroomRecord:edit'),
|
editEnabel: checkPermission('meeting:showroomRecord:edit'),
|
||||||
removeEnable: checkPermission('meeting:showroomRecord:remove')
|
removeEnable: checkPermission('meeting:showroomRecord:remove'),
|
||||||
|
rejectEnable: checkPermission('meeting:showroomRecord:reject')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user