兰宝车间质量管理系统-前端
LiuHao
2023-04-02 3b93c8ac5661766174007395795e805763f6330b
perf  hide userPage and rolePage id field
已修改2个文件
6 ■■■■ 文件已修改
src/views/system/role/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/user/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/role/index.vue
@@ -371,9 +371,9 @@
            <el-table ref="roleTableRef" v-loading="loading" :data="roleList" @selection-change="handleSelectionChange">
                <el-table-column type="selection" width="55" align="center" />
                <el-table-column label="角色编号" prop="roleId" width="120" />
                <el-table-column label="角色编号" prop="roleId" width="120" v-if="false" />
                <el-table-column label="角色名称" prop="roleName" :show-overflow-tooltip="true" width="150" />
                <el-table-column label="权限字符" prop="roleKey" :show-overflow-tooltip="true" width="150" />
                <el-table-column label="权限字符" prop="roleKey" :show-overflow-tooltip="true" width="200" />
                <el-table-column label="显示顺序" prop="roleSort" width="100" />
                <el-table-column label="状态" align="center" width="100">
                    <template #default="scope">
src/views/system/user/index.vue
@@ -53,7 +53,7 @@
})
// 列显隐信息
const columns = ref<FieldOption[]>([
  { key: 0, label: `用户编号`, visible: true },
  { key: 0, label: `用户编号`, visible: false },
  { key: 1, label: `用户名称`, visible: true },
  { key: 2, label: `用户昵称`, visible: true },
  { key: 3, label: `部门`, visible: true },