feat(system): 添加菜单显示状态控制功能并完善租户ID设置

- 在MetaVo中添加visible字段用于控制菜单显示状态
- 修改SysMenuServiceImpl中的路由构建逻辑,传递visible信息到前端
- 更新SidebarItem.vue组件,根据visible属性控制菜单项显示
- 在多个医嘱管理相关服务类中显式设置租户ID以确保多租户隔离
- 调整字典管理相关路由配置,优化页面跳转路径
- 在菜单管理界面添加显示状态查询和表格列展示功能
This commit is contained in:
2026-01-23 16:12:56 +08:00
parent f6d9321f95
commit abd5bd9f2f
10 changed files with 59 additions and 64 deletions

View File

@@ -54,7 +54,7 @@
<el-table-column label="字典名称" align="center" prop="dictName" :show-overflow-tooltip="true" />
<el-table-column label="字典类型" align="center" :show-overflow-tooltip="true">
<template #default="scope">
<router-link :to="'/system/dict/data/' + scope.row.dictId" class="link-type">
<router-link :to="'/system/basicmanage/dict/data/' + scope.row.dictId" class="link-type">
<span>{{ scope.row.dictType }}</span>
</router-link>
</template>

View File

@@ -20,6 +20,16 @@
/>
</el-select>
</el-form-item>
<el-form-item label="显示状态" prop="visible">
<el-select v-model="queryParams.visible" placeholder="显示状态" clearable style="width: 200px">
<el-option
v-for="dict in sys_show_hide"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item class="search-buttons">
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
@@ -70,6 +80,11 @@
<dict-tag :options="sys_normal_disable" :value="scope.row.status" class="dict-tag" />
</template>
</el-table-column>
<el-table-column prop="visible" label="显示状态" width="100">
<template #default="scope">
<dict-tag :options="sys_show_hide" :value="scope.row.visible" class="dict-tag" />
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" width="160" prop="createTime">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>