router-index.js中注释掉系统管理的路由配置,系统管理的相关页面均能访问,药品目录添加新项目时医保等级默认值设置完成。
This commit is contained in:
@@ -184,69 +184,69 @@ export const dynamicRoutes = [
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
// 系统管理路由
|
// 系统管理路由
|
||||||
{
|
// {
|
||||||
path: '/system',
|
// path: '/system',
|
||||||
component: Layout,
|
// component: Layout,
|
||||||
redirect: '/system/user',
|
// redirect: '/system/user',
|
||||||
name: 'System',
|
// name: 'System',
|
||||||
meta: { title: '系统管理', icon: 'system' },
|
// meta: { title: '系统管理', icon: 'system' },
|
||||||
children: [
|
// children: [
|
||||||
{
|
// {
|
||||||
path: 'user', // 用户管理路由
|
// path: 'user', // 用户管理路由
|
||||||
component: () => import('@/views/system/user/index.vue'),
|
// component: () => import('@/views/system/user/index.vue'),
|
||||||
name: 'User',
|
// name: 'User',
|
||||||
meta: { title: '用户管理', icon: 'user', permissions: ['system:user:list'] }
|
// meta: { title: '用户管理', icon: 'user', permissions: ['system:user:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'role', // 角色管理路由
|
// path: 'role', // 角色管理路由
|
||||||
component: () => import('@/views/system/role/index.vue'),
|
// component: () => import('@/views/system/role/index.vue'),
|
||||||
name: 'Role',
|
// name: 'Role',
|
||||||
meta: { title: '角色管理', icon: 'role', permissions: ['system:role:list'] }
|
// meta: { title: '角色管理', icon: 'role', permissions: ['system:role:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'menu', // 菜单管理路由
|
// path: 'menu', // 菜单管理路由
|
||||||
component: () => import('@/views/system/menu/index.vue'),
|
// component: () => import('@/views/system/menu/index.vue'),
|
||||||
name: 'Menu',
|
// name: 'Menu',
|
||||||
meta: { title: '菜单管理', icon: 'menu', permissions: ['system:menu:list'] }
|
// meta: { title: '菜单管理', icon: 'menu', permissions: ['system:menu:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'dept', // 部门管理路由
|
// path: 'dept', // 部门管理路由
|
||||||
component: () => import('@/views/system/dept/index.vue'),
|
// component: () => import('@/views/system/dept/index.vue'),
|
||||||
name: 'Dept',
|
// name: 'Dept',
|
||||||
meta: { title: '部门管理', icon: 'dept', permissions: ['system:dept:list'] }
|
// meta: { title: '部门管理', icon: 'dept', permissions: ['system:dept:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'post', // 岗位管理路由
|
// path: 'post', // 岗位管理路由
|
||||||
component: () => import('@/views/system/post/index.vue'),
|
// component: () => import('@/views/system/post/index.vue'),
|
||||||
name: 'Post',
|
// name: 'Post',
|
||||||
meta: { title: '岗位管理', icon: 'post', permissions: ['system:post:list'] }
|
// meta: { title: '岗位管理', icon: 'post', permissions: ['system:post:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'dict', // 字典管理路由
|
// path: 'dict', // 字典管理路由
|
||||||
component: () => import('@/views/system/dict/index.vue'),
|
// component: () => import('@/views/system/dict/index.vue'),
|
||||||
name: 'Dict',
|
// name: 'Dict',
|
||||||
meta: { title: '字典管理', icon: 'dict', permissions: ['system:dict:list'] }
|
// meta: { title: '字典管理', icon: 'dict', permissions: ['system:dict:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'config', // 参数配置路由
|
// path: 'config', // 参数配置路由
|
||||||
component: () => import('@/views/system/config/index.vue'),
|
// component: () => import('@/views/system/config/index.vue'),
|
||||||
name: 'Config',
|
// name: 'Config',
|
||||||
meta: { title: '参数配置', icon: 'config', permissions: ['system:config:list'] }
|
// meta: { title: '参数配置', icon: 'config', permissions: ['system:config:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'notice', // 通知公告路由
|
// path: 'notice', // 通知公告路由
|
||||||
component: () => import('@/views/system/notice/index.vue'),
|
// component: () => import('@/views/system/notice/index.vue'),
|
||||||
name: 'Notice',
|
// name: 'Notice',
|
||||||
meta: { title: '通知公告', icon: 'notice', permissions: ['system:notice:list'] }
|
// meta: { title: '通知公告', icon: 'notice', permissions: ['system:notice:list'] }
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
path: 'tenant', // 租户管理路由
|
// path: 'tenant', // 租户管理路由
|
||||||
component: () => import('@/views/system/tenant/index.vue'),
|
// component: () => import('@/views/system/tenant/index.vue'),
|
||||||
name: 'Tenant',
|
// name: 'Tenant',
|
||||||
meta: { title: '租户管理', icon: 'tenant', permissions: ['system:tenant:list'] }
|
// meta: { title: '租户管理', icon: 'tenant', permissions: ['system:tenant:list'] }
|
||||||
}
|
// }
|
||||||
]
|
// ]
|
||||||
},
|
// },
|
||||||
// 租户用户设置路由
|
// 租户用户设置路由
|
||||||
{
|
{
|
||||||
path: '/system/tenant-user',
|
path: '/system/tenant-user',
|
||||||
|
|||||||
@@ -48,7 +48,6 @@
|
|||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
:disabled="form.isEditInfoDisable === 1 || form.isEditInfoDisable === 2"
|
:disabled="form.isEditInfoDisable === 1 || form.isEditInfoDisable === 2"
|
||||||
>
|
>
|
||||||
>
|
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in chrgitm_lv"
|
v-for="dict in chrgitm_lv"
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
@@ -999,7 +998,7 @@ function reset() {
|
|||||||
thoPartAttributeEnum: undefined,
|
thoPartAttributeEnum: undefined,
|
||||||
usageLimit: undefined,
|
usageLimit: undefined,
|
||||||
basicFlag: undefined,
|
basicFlag: undefined,
|
||||||
chrgitmLv: undefined,
|
chrgitmLv: '3',
|
||||||
};
|
};
|
||||||
antibioticForm.value = {
|
antibioticForm.value = {
|
||||||
antibioticCode: undefined,
|
antibioticCode: undefined,
|
||||||
|
|||||||
Reference in New Issue
Block a user