From 81e1b297b1fabec596c1cb7187ce2d6199026429 Mon Sep 17 00:00:00 2001
From: guoshilong <123456>
Date: Thu, 30 Nov 2023 16:51:10 +0800
Subject: [PATCH] 模拟考试成绩查询
---
src/router/views/index.js | 86 ++++++++++++++++++++++++++++++++++--------
1 files changed, 69 insertions(+), 17 deletions(-)
diff --git a/src/router/views/index.js b/src/router/views/index.js
index 95ac4b4..b3727d0 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -135,7 +135,7 @@
redirect: '/securityUnit/index',
children: [{
path: 'index',
- name: '保安单位信息',
+ name: '单位信息',
meta: {
i18n: 'dict'
},
@@ -200,7 +200,7 @@
redirect: '/securityUnitChild/index',
children: [{
path: 'index',
- name: '保安单位详情',
+ name: '单位详情',
meta: {
i18n: 'dict'
},
@@ -702,8 +702,6 @@
import( /* webpackChunkName: "views" */ '@/views/trainingRegistration/index')
}]
},
-
-
// {
// path: '/trainExam',
// component: Layout,
@@ -930,7 +928,7 @@
component: Layout,
children: [{
path: 'index',
- name: '附件查看',
+ name: '附件查阅',
meta: {
i18n: 'index',
},
@@ -963,24 +961,23 @@
import( /* webpackChunkName: "views" */ '@/views/trainExam/index')
}, {
path: 'query',
- name: '培训申请查询',
+ name: '培训申请管理',
meta: {
i18n: 'index',
},
component: () =>
import( /* webpackChunkName: "views" */ '@/views/trainExam/index')
- },
- {
- path: 'modifiedGrades',
- name: '修改成绩管理',
- meta: {
- i18n: 'modifiedGrades'
- },
- component: () =>
- import( /* webpackChunkName: "views" */ '@/views/trainExam/modifiedGrades')
}]
},
-
+ {
+ path: 'modifiedGrades',
+ name: '修改成绩管理',
+ meta: {
+ i18n: 'modifiedGrades'
+ },
+ component: () =>
+ import( /* webpackChunkName: "views" */ '@/views/trainExam/modifiedGrades')
+ },
{
path: '/accreditationRecords',
component: Layout,
@@ -994,5 +991,60 @@
component: () =>
import( /* webpackChunkName: "views" */ '@/views/accreditationRecords/accreditationRecords')
}]
- }
+ },
+ {
+ path: '/certificateOfPrint',
+ component: Layout,
+ redirect: '/certificateOfPrint/index',
+ children: [{
+ path: 'index',
+ name: '纸质证书制作',
+ meta: {
+ i18n: 'index'
+ },
+ component: () =>
+ import( /* webpackChunkName: "views" */ '@/views/securityGuard/certificateOfPrint')
+ }]
+ },
+ {
+ path: '/userSManual',
+ component: Layout,
+ redirect: '/userSManual/index',
+ children: [{
+ path: 'index',
+ name: '用户手册',
+ meta: {
+ i18n: 'index'
+ },
+ component: () =>
+ import( /* webpackChunkName: "views" */ '@/page/index/top/userSManual')
+ }]
+ },
+ {
+ path: '/drive',
+ component: Layout,
+ redirect: '/drive/index',
+ children: [{
+ path: 'index',
+ name: '驱动下载',
+ meta: {
+ i18n: 'index'
+ },
+ component: () =>
+ import( /* webpackChunkName: "views" */ '@/page/index/top/drive')
+ }]
+ }, {
+ path: '/rail',
+ component: Layout,
+ redirect: '/rail/index',
+ children: [{
+ path: 'index',
+ name: '电子围栏测试',
+ meta: {
+ i18n: 'index'
+ },
+ component: () =>
+ import( /* webpackChunkName: "views" */ '@/views/rail/rail')
+ }]
+ },
]
--
Gitblit v1.9.3