From 20195d0e1cbbf3e8bfd20e2baf53e2115f663da3 Mon Sep 17 00:00:00 2001
From: zhouwenxuan <1175765986@qq.com>
Date: Wed, 24 Jan 2024 16:38:22 +0800
Subject: [PATCH] 评价结论
---
src/router/index.js | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 50 insertions(+), 7 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index 9a2c07b..c5f551d 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -52,7 +52,11 @@
component: () => import('@/views/error/401'),
hidden: true
},
-
+ {
+ path: '/fillForm',
+ component: () => import('@/views/safetyReview/expertManage/fillForm/index.vue'),
+ hidden: true
+ },
{
path: '/expertUser',
component: () => import('@/views/safetyReview/userManage/expertUsers/index.vue'),
@@ -126,6 +130,33 @@
]
},
{
+ path: '/project',
+ component: Layout,
+ redirect: '/project',
+ children: [
+ {
+ path: '/project',
+ component: () => import('@/views/safetyReview/projectManage/index.vue'),
+ name: 'Project',
+ meta: { title: '项目管理',icon: 'form', affix: true }
+ }
+ ]
+ },
+ {
+ path: '/process',
+ component: Layout,
+ redirect: '/process',
+ children: [
+ {
+ path: '/process',
+ component: () => import('@/views/safetyReview/projectManage/process.vue'),
+ name: 'Process',
+ meta: { title: '项目信息管理'}
+ }
+ ]
+ },
+
+ {
path: '/userManage',
component: Layout,
redirect: '/userManage/supervise',
@@ -154,19 +185,19 @@
{
path: '/expertManage',
component: Layout,
- redirect: '/expertManage/expert',
+ redirect: '/expertManage/experts',
meta: { title: '厅专家库管理'},
children: [
{
- path: 'expert',
- component: () => import('@/views/index'),
+ path: 'experts',
+ component: () => import('@/views/safetyReview/expertManage/experts/index.vue'),
name: 'expert',
meta: { title: '厅专家库',icon: 'form'}
},
{
- path: 'record',
- component: () => import('@/views/index'),
- name: 'record',
+ path: 'applyRecords',
+ component: () => import('@/views/safetyReview/expertManage/applyRecords/index.vue'),
+ name: 'applyRecords',
meta: { title: '专家申请记录',icon: 'form'}
},
{
@@ -190,6 +221,12 @@
meta: { title: '评价类型管理',icon: 'form'}
},
{
+ path: 'expertsType',
+ component: () => import('@/views/safetyReview/baseSet/expertsType/index.vue'),
+ name: 'expertsType',
+ meta: { title: '专家类型管理',icon: 'form'}
+ },
+ {
path: 'business',
component: () => import('@/views/safetyReview/baseSet/business/index.vue'),
name: 'business',
@@ -201,6 +238,12 @@
name: 'area',
meta: { title: '地区维护',icon: 'form'}
},
+ {
+ path: 'major',
+ component: () => import('@/views/safetyReview/baseSet/major/index.vue'),
+ name: 'major',
+ meta: { title: '专业方向',icon: 'form'}
+ },
]
},
--
Gitblit v1.9.2