|
@@ -112,13 +112,13 @@
|
|
|
<el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item command="handleResetPwd" icon="el-icon-key"
|
|
|
- v-hasPermi="['system:user:resetPwd']">设置积分</el-dropdown-item>
|
|
|
+ v-hasPermi="configPermi.resetPwd">设置积分</el-dropdown-item>
|
|
|
<el-dropdown-item command="handleAuthRole" icon="el-icon-circle-check"
|
|
|
- v-hasPermi="['system:user:edit']">设置储值</el-dropdown-item>
|
|
|
+ v-hasPermi="configPermi.AuthRole">设置储值</el-dropdown-item>
|
|
|
<el-dropdown-item command="handleEdit" icon="el-icon-circle-check"
|
|
|
- v-hasPermi="['system:user:edit']">编辑</el-dropdown-item>
|
|
|
+ v-hasPermi="configPermi.edit">编辑</el-dropdown-item>
|
|
|
<el-dropdown-item command="handleResetPassword" icon="el-icon-circle-check"
|
|
|
- v-hasPermi="['system:user:edit']">重置密码</el-dropdown-item>
|
|
|
+ v-hasPermi="configPermi.Password">重置密码</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
</template>
|
|
@@ -163,12 +163,15 @@
|
|
|
return {
|
|
|
title: "实体卡管理",// 通用标题
|
|
|
configPermi: {
|
|
|
- add: ['system:user:edit'], // 新增权限
|
|
|
- details: ['system:user:details'], // 详情权限
|
|
|
- delect: ['system:user:remove'], // 删除权限
|
|
|
- edit: ['system:user:edit'], // 编辑权限
|
|
|
- upload: ['system:user:upload'],// 导入权限
|
|
|
- export: ['system:user:export'],// 导出权限
|
|
|
+ add: ['physicalCard:physicalCardManagement:add'], // 新增权限
|
|
|
+ details: ['physicalCard:physicalCardManagement:details'], // 详情权限
|
|
|
+ delect: ['physicalCard:physicalCardManagement:delect'], // 删除权限
|
|
|
+ edit: ['physicalCard:physicalCardManagement:edit'], // 编辑权限
|
|
|
+ upload: [''],// 导入权限
|
|
|
+ export: [''],// 导出权限
|
|
|
+ resetPwd: ['physicalCard:physicalCardManagement:resetPwd'],// 设置积分
|
|
|
+ AuthRole: ['physicalCard:physicalCardManagement:AuthRole'],// 设置储值
|
|
|
+ Password: ['physicalCard:physicalCardManagement:Password'], // 重置密码
|
|
|
},
|
|
|
configUrl: {
|
|
|
list: '/merchant/merchantEntitycard/pageList', // 列表地址
|