[update] 修改bug87734

This commit is contained in:
lideqin
2024-07-31 15:27:13 +08:00
parent 93681dafeb
commit ad005173b2
3 changed files with 49 additions and 41 deletions
+4 -10
View File
@@ -86,8 +86,8 @@
<!-- 操作按钮区域 -->
<div class="table-operator" style="border-top: 5px">
<a-button @click="handleAdd" type="primary" icon="plus">{{ $t('user.addUser') }}</a-button>
<a-button type="primary" ghost icon="upload" @click="handleExportXls($t('user.userInformation'), '.xls')">{{ $t('export') }}</a-button>
<a-button @click="handleAdd" type="primary" icon="plus" v-has="'user:add'">{{ $t('user.addUser') }}</a-button>
<a-button type="primary" ghost icon="upload" v-has="'sys:user:export'" @click="handleExportXls($t('user.userInformation'), '.xls')">{{ $t('export') }}</a-button>
<!--<a-button v-if="isDev" type="primary" ghost icon="hdd" @click="recycleBinVisible=true">{{ $t('recycleBin') }}</a-button>-->
<!--<a-button v-if="isDev" type="primary" ghost icon="hdd" @click="roleAssignment">{{ $t('user.roleAllocation') }}</a-button>-->
<!--<a-dropdown v-if="isDev && selectedRowKeys.length > 0">-->
@@ -308,10 +308,7 @@ export default {
{
text: this.$t('details'),
clickEvent: 'handleDetail',
has: '',
show: (record) => {
return this.isDev
}
has: ''
},
// 密码
{
@@ -350,10 +347,7 @@ export default {
{
text: this.$t('user.uploadHandStamp'),
clickEvent: 'handleUploadHandStamp',
has: 'user:uploadHandStamp',
show: (record) => {
return false
}
has: 'user:uploadHandStamp'
}
]
}