From f8486ddb89ee8c70104f2c2e907dcbaf0183bd87 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 11 七月 2024 10:19:29 +0800
Subject: [PATCH] 修改密码提示
---
src/router.js | 98 ++++++++++++++++++++++++++++++++++++-------------
1 files changed, 72 insertions(+), 26 deletions(-)
diff --git a/src/router.js b/src/router.js
index 17ffd6e..0059a0d 100644
--- a/src/router.js
+++ b/src/router.js
@@ -50,7 +50,21 @@
path: '/exam/mark/paper',
component: () => import('@/views/exam/exam/MarkPaper'),
name: 'MarkPaper',
- meta: { title: '闃呭嵎'},
+ meta: { title: '闃呭嵎', noCache: true },
+ hidden: true
+ },
+ {
+ path: '/exam/mark/paper/detail',
+ component: () => import('@/views/exam/exam/MarkPaperDetail'),
+ name: 'MarkPaperDetail',
+ meta: { title: '闃呭嵎璇︽儏', noCache: true },
+ hidden: true
+ },
+ {
+ path: '/exam/monitor',
+ component: () => import('@/views/exam/exam/monitor'),
+ name: 'monitor',
+ meta: { title: '鐩戞帶', noCache: true },
hidden: true
}
]
@@ -134,6 +148,13 @@
hidden: true
},
{
+ path: 'paper/import',
+ component: () => import('@/views/exam/paper/import'),
+ name: 'ExamPaperImport',
+ meta: { title: '璇曞嵎瀵煎叆', noCache: true, activeMenu: '/exam/paper/list' },
+ hidden: true
+ },
+ {
path: 'question/list',
component: () => import('@/views/exam/question/list'),
name: 'ExamQuestionPageList',
@@ -212,14 +233,15 @@
component: () => import('@/views/train/index'),
name: 'TrainListPage',
meta: { title: '鍦ㄧ嚎鍩硅', noCache: true }
- },
- {
- path: 'meet/index',
- component: () => import('@/views/meet/index'),
- name: 'meet',
- hidden: true
}
]
+ },
+
+ {
+ path: '/meet',
+ component: () => import('@/views/meet/index'),
+ meta: { title: '鍦ㄧ嚎鏁欏', noCache: true },
+ hidden: true
},
{
@@ -250,7 +272,13 @@
component: () => import('@/views/education/resource/list'),
name: 'EducationResourcePage',
meta: { title: '鏁欏璧勬簮', noCache: true }
- }
+ },
+ {
+ path: 'cheat/list',
+ component: () => import('@/views/education/cheat/list'),
+ name: 'EducationCheatPage',
+ meta: { title: '浣滃紛璁板綍', noCache: true }
+ },
]
},
{
@@ -286,29 +314,46 @@
]
},
{
- path: '/message',
+ path: '/config',
component: Layout,
- name: 'MessagePage',
- meta: {
- title: '娑堟伅涓績',
- icon: 'message'
- },
- alwaysShow: true,
children: [
{
- path: 'list',
- component: () => import('@/views/message/list'),
- name: 'MessageListPage',
- meta: { title: '娑堟伅鍒楄〃', noCache: true }
+ path: '/setting',
+ name: 'SysSetting',
+ meta: {
+ title: '绯荤粺閰嶇疆',
+ icon: 'answer',
+ affix: true
+ },
+ component: () => import('@/views/sys/SysSetting')
},
- {
- path: 'send',
- component: () => import('@/views/message/send'),
- name: 'MessageSendPage',
- meta: { title: '娑堟伅鍙戦��', noCache: true }
- }
]
},
+
+ // {
+ // path: '/message',
+ // component: Layout,
+ // name: 'MessagePage',
+ // meta: {
+ // title: '娑堟伅涓績',
+ // icon: 'message'
+ // },
+ // alwaysShow: true,
+ // children: [
+ // {
+ // path: 'list',
+ // component: () => import('@/views/message/list'),
+ // name: 'MessageListPage',
+ // meta: { title: '娑堟伅鍒楄〃', noCache: true }
+ // },
+ // {
+ // path: 'send',
+ // component: () => import('@/views/message/send'),
+ // name: 'MessageSendPage',
+ // meta: { title: '娑堟伅鍙戦��', noCache: true }
+ // }
+ // ]
+ // },
{
path: '/log',
component: Layout,
@@ -340,7 +385,8 @@
}
]
},
- { path: '*',
+ {
+ path: '*',
hidden: true,
component: () => import('@/views/error-page/404'),
meta: { title: '404', noCache: true }
--
Gitblit v1.8.0