From d583ee91ff627890ce0a2a1055dcdc394d2391e2 Mon Sep 17 00:00:00 2001
From: xuefei <564615061@qq.cm>
Date: 星期四, 04 五月 2023 09:55:18 +0800
Subject: [PATCH] 登录密码验证base64加密
---
src/router/router.js | 39 ++++++++++++++++++++++++++++++++-------
1 files changed, 32 insertions(+), 7 deletions(-)
diff --git a/src/router/router.js b/src/router/router.js
index 2d41852..b247eb9 100644
--- a/src/router/router.js
+++ b/src/router/router.js
@@ -5,7 +5,7 @@
path: '/login',
name: 'login',
meta: {
- title: '鐧诲綍 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙� '
+ title: '鐧诲綍'
},
component: () => import('@/views/login.vue')
};
@@ -14,7 +14,7 @@
path: '/regist',
name: 'regist',
meta: {
- title: '娉ㄥ唽 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙�'
+ title: '娉ㄥ唽'
},
component: () => import('@/views/regist.vue')
};
@@ -23,7 +23,7 @@
path: '/regist-result',
name: 'regist-result',
meta: {
- title: '娉ㄥ唽缁撴灉 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙�'
+ title: '娉ㄥ唽缁撴灉'
},
component: () => import('@/views/regist-result.vue')
};
@@ -32,7 +32,7 @@
path: '/reset',
name: 'reset',
meta: {
- title: '閲嶇疆瀵嗙爜 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙�'
+ title: '閲嶇疆瀵嗙爜'
},
component: () => import('@/views/reset.vue')
};
@@ -41,7 +41,7 @@
path: '/relate',
name: 'relate',
meta: {
- title: '缁戝畾璐﹀彿 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙� '
+ title: '缁戝畾璐﹀彿 '
},
component: () => import('@/views/relate.vue')
};
@@ -50,7 +50,7 @@
path: '/authorize',
name: 'authorize',
meta: {
- title: 'XBoot缁熶竴璁よ瘉骞冲彴 - XBoot鍓嶅悗绔垎绂诲紑鍙戝钩鍙� '
+ title: ' '
},
component: () => import('@/views/authorize.vue')
};
@@ -82,6 +82,23 @@
component: () => import('@/views/error-page/500.vue')
};
+export const home2 = {
+ path: '/home2',
+ meta: {
+ title: 'home'
+ },
+ name: 'home',
+ component: () => import('@/views/sys/user-manage/userManage.vue')
+};
+
+export const table1 = {path: '/table1', meta: {title: 'table1'}, name: 'table1', component: () => import('@/views/open/table1.vue')};
+export const table2 = {path: '/table2', meta: {title: 'table2'}, name: 'table2', component: () => import('@/views/open/table2.vue')};
+export const table3 = {path: '/table3', meta: {title: 'table3'}, name: 'table3', component: () => import('@/views/open/table3.vue')};
+export const table4 = {path: '/table4', meta: {title: 'table4'}, name: 'table4', component: () => import('@/views/open/table4.vue')};
+export const table5 = {path: '/table5', meta: {title: 'table5'}, name: 'table5', component: () => import('@/views/open/table5.vue')};
+export const table6 = {path: '/table6', meta: {title: 'table6'}, name: 'table6', component: () => import('@/views/open/table6.vue')};
+export const table7 = {path: '/table7', meta: {title: 'table7'}, name: 'table7', component: () => import('@/views/open/table7.vue')};
+
// 浣滀负Main缁勪欢鐨勫瓙椤甸潰灞曠ず浣嗘槸涓嶅湪宸︿晶鑿滃崟鏄剧ず鐨勮矾鐢卞啓鍦╫therRouter閲�
export const otherRouter = {
path: '/',
@@ -112,5 +129,13 @@
otherRouter,
...appRouter,
page500,
- page403
+ page403,
+ home2,
+ table1,
+ table2,
+ table3,
+ table4,
+ table5,
+ table6,
+ table7,
];
--
Gitblit v1.9.1