From 470153d1cd1f5043a4f0c55370e8f641839d5269 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: 星期二, 30 一月 2024 10:46:57 +0800
Subject: [PATCH] bug修改
---
src/layout/components/Sidebar/menu.js | 49 ++++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 42 insertions(+), 7 deletions(-)
diff --git a/src/layout/components/Sidebar/menu.js b/src/layout/components/Sidebar/menu.js
index e0c6940..20c8ce0 100644
--- a/src/layout/components/Sidebar/menu.js
+++ b/src/layout/components/Sidebar/menu.js
@@ -2,6 +2,11 @@
const menu = {
adminMenu: [
{
+ path: '/project',
+ name: 'Project',
+ meta: { title: '项目管理',icon: 'form',affix: true }
+ },
+ {
path: '/institution',
name: 'Institution',
meta: { title: '机构公示',icon: 'form',affix: true }
@@ -40,17 +45,17 @@
},
{
path: '/expertManage',
- redirect: '/userManage/supervise',
+ redirect: '/expertManage/experts',
meta: { title: '厅专家库管理',icon: 'form'},
children: [
{
- path: 'expert',
- name: 'expert',
+ path: 'experts',
+ name: 'experts',
meta: { title: '厅专家库',icon: 'form'}
},
{
- path: 'record',
- name: 'record',
+ path: 'applyRecords',
+ name: 'applyRecords',
meta: { title: '专家申请记录',icon: 'form'}
}
]
@@ -66,19 +71,49 @@
meta: { title: '评价类型管理',icon: 'form'}
},
{
+ path: 'expertsType',
+ name: 'expertsType',
+ meta: { title: '专家类型管理',icon: 'form'}
+ },
+ {
path: 'business',
name: 'business',
- meta: { title: '业务范围',icon: 'form'}
+ meta: { title: '业务范围管理',icon: 'form'}
},
{
path: 'area',
name: 'area',
- meta: { title: '地区维护',icon: 'form'}
+ meta: { title: '地区维护管理',icon: 'form'}
+ },
+ {
+ path: 'major',
+ name: 'major',
+ meta: { title: '专业方向管理',icon: 'form'}
}
]
},
+ ],
+ agencyMenu: [
+ {
+ path: '/project',
+ name: 'Project',
+ meta: { title: '项目管理',icon: 'form',affix: true }
+ },
+ {
+ path: '/userManage',
+ redirect: '/userManage/supervise',
+ meta: { title: '用户管理',icon: 'form'},
+ children: [
+ {
+ path: 'expertUsers',
+ name: 'expertUsers',
+ meta: { title: '专家用户管理',icon: 'form'}
+ } ,
+ ]
+ },
]
+
}
export default menu;
--
Gitblit v1.9.2