From 865c472d4b2bca2a3506f8e9c36809887369bd9b Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: Wed, 13 Nov 2024 15:31:36 +0800
Subject: [PATCH] 新增页面
---
src/router/index.js | 97 +++++++++++++++++++++++++++++++++++++-----------
1 files changed, 74 insertions(+), 23 deletions(-)
diff --git a/src/router/index.js b/src/router/index.js
index c5f551d..02582a3 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -58,6 +58,11 @@
hidden: true
},
{
+ path: '/checkProgress',
+ component: () => import('@/views/safetyReview/expertManage/checkProgress/index.vue'),
+ hidden: true
+ },
+ {
path: '/expertUser',
component: () => import('@/views/safetyReview/userManage/expertUsers/index.vue'),
hidden: true
@@ -90,6 +95,19 @@
// }
// ]
// },
+ {
+ path: '/noMenu',
+ component: Layout,
+ redirect: '/noMenu',
+ children: [
+ {
+ path: '/noMenu',
+ component: () => import('@/views/error/noMenu.vue'),
+ name: 'noMenu',
+ meta: { title: '提示',icon: 'form', affix: true }
+ }
+ ]
+ },
{
path: '',
component: Layout,
@@ -139,6 +157,19 @@
component: () => import('@/views/safetyReview/projectManage/index.vue'),
name: 'Project',
meta: { title: '项目管理',icon: 'form', affix: true }
+ }
+ ]
+ },
+ {
+ path: '/projectSupplement',
+ component: Layout,
+ redirect: '/projectSupplement',
+ children: [
+ {
+ path: '/projectSupplement',
+ component: () => import('@/views/safetyReview/projectSupplement/index.vue'),
+ name: 'projectSupplement',
+ meta: { title: '项目补录',icon: 'form', affix: true }
}
]
},
@@ -209,41 +240,61 @@
]
},
{
- path: '/baseSet',
+ path: '/postEvaluation',
component: Layout,
- redirect: '/baseSet/evaluate',
- meta: { title: '基础设置'},
+ redirect: '/postEvaluation',
children: [
{
- path: 'evaluate',
- component: () => import('@/views/safetyReview/baseSet/evaluateType/index.vue'),
- name: 'evaluate',
- meta: { title: '评价类型管理',icon: 'form'}
+ path: '/postEvaluation',
+ component: () => import('@/views/safetyReview/expertManage/postEvaluation/index.vue'),
+ name: 'postEvaluation',
+ meta: { title: '事后考评'}
+ }
+ ]
+ },
+ {
+ path: '/evaluateRecord',
+ component: Layout,
+ redirect: '/evaluateRecord',
+ children: [
+ {
+ path: '/evaluateRecord',
+ component: () => import('@/views/safetyReview/expertManage/evaluateRecord/index.vue'),
+ name: 'evaluateRecord',
+ meta: { title: '专家考评记录'}
+ }
+ ]
+ },
+ {
+ path: '/system',
+ component: Layout,
+ redirect: '/system/post',
+ meta: { title: '系统设置'},
+ children: [
+ {
+ path: 'dept',
+ component: () => import('@/views/system/dept/index.vue'),
+ name: 'dept',
+ meta: { title: '部门处室管理',icon: 'form'}
},
{
path: 'expertsType',
component: () => import('@/views/safetyReview/baseSet/expertsType/index.vue'),
name: 'expertsType',
- meta: { title: '专家类型管理',icon: 'form'}
+ meta: { title: '专业领域管理',icon: 'form'}
},
{
- path: 'business',
- component: () => import('@/views/safetyReview/baseSet/business/index.vue'),
- name: 'business',
- meta: { title: '业务范围',icon: 'form'}
+ path: 'evaluate',
+ component: () => import('@/views/safetyReview/baseSet/evaluateType/index.vue'),
+ name: 'evaluate',
+ meta: { title: '考评项目管理',icon: 'form'}
},
{
- path: 'area',
- component: () => import('@/views/safetyReview/baseSet/area/index.vue'),
- name: 'area',
- meta: { title: '地区维护',icon: 'form'}
- },
- {
- path: 'major',
- component: () => import('@/views/safetyReview/baseSet/major/index.vue'),
- name: 'major',
- meta: { title: '专业方向',icon: 'form'}
- },
+ path: 'openApply',
+ component: () => import('@/views/safetyReview/baseSet/openApply/index.vue'),
+ name: 'openApply',
+ meta: { title: '专家申请设置',icon: 'form'}
+ }
]
},
--
Gitblit v1.9.2