fix(tenant): 更新租户操作权限标识

This commit is contained in:
huk 2025-09-27 13:05:55 +08:00
parent 2e41f12c77
commit 8b44a1e4d5

View File

@ -101,7 +101,7 @@
<el-table-column width="580" label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip content="查看" placement="top">
<el-button v-hasPermi="['system:tenant:seach']" link type="primary" @click="funseach(scope.row, true)"> 查看 </el-button>
<el-button v-hasPermi="['system:tenant:query']" link type="primary" @click="funseach(scope.row, true)"> 查看 </el-button>
</el-tooltip>
<el-tooltip content="封禁记录" placement="top">
<el-button v-hasPermi="['system:tenant:edit']" link type="primary" @click="showTenantBannedInfoModal(scope.row, true)">
@ -112,13 +112,13 @@
<el-button v-hasPermi="['system:tenant:edit']" link type="primary" @click="handleUpdate(scope.row)"> 修改</el-button>
</el-tooltip>
<el-tooltip content="提交" placement="top">
<el-button v-hasPermi="['system:tenant:submit']" link type="primary" @click="handleTl(scope.row)"> 提交 </el-button>
<el-button v-hasPermi="['system:tenant:submitSign']" link type="primary" @click="handleTl(scope.row)"> 提交 </el-button>
</el-tooltip>
<el-tooltip content="审核" placement="top">
<el-button v-hasPermi="['system:tenant:review']" link type="primary" @click="handleSh(scope.row)"> 审核 </el-button>
<el-button v-hasPermi="['system:tenant:reviewSubmitted']" link type="primary" @click="handleSh(scope.row)"> 审核 </el-button>
</el-tooltip>
<el-tooltip content="确认审核" placement="top">
<el-button v-hasPermi="['system:tenant:confirm']" link type="primary" @click="handleSubmit(scope.row)"> 确认审核 </el-button>
<el-button v-hasPermi="['system:tenant:confirmedSign']" link type="primary" @click="handleSubmit(scope.row)"> 确认审核 </el-button>
</el-tooltip>
<el-tooltip content="切换租户状态" placement="top">
<el-button v-hasPermi="['system:tenant:status']" link type="primary" @click="handleStatusChange(scope.row)"> 切换租户状态 </el-button>