From 27d35a9f1355e4a56aa1e8c1aad9c7f58002ed50 Mon Sep 17 00:00:00 2001
From: 明梦爽 <2972214568@qq.com>
Date: 星期三, 10 八月 2022 17:52:13 +0800
Subject: [PATCH] 修改login
---
src/router.js | 164 +++++++++++++++++++++++++++++-------------------------
1 files changed, 89 insertions(+), 75 deletions(-)
diff --git a/src/router.js b/src/router.js
index 82d7ea9..b511d60 100644
--- a/src/router.js
+++ b/src/router.js
@@ -18,7 +18,9 @@
import Welcome from './components/Administrator/Welcome.vue'
import Main from './components/Administrator/Main.vue'
import Edit from './components/Administrator/Edit.vue'
-
+import EditLunBo from './components/Administrator/EditLunBo.vue'
+import AdMain from './components/Administrator/AdMain.vue'
+import AdEdit from './components/Administrator/AdEdit.vue'
Vue.use(Router)
@@ -26,84 +28,91 @@
routes: [
{ path: '/', redirect: '/home' },
{ path: '/login', component: Login },
- { path:'/administrator',
+ {
+ path: '/administrator',
component: Administrator,
- children: [{ path:'welcome',component:Welcome },
- { path:'main',component:Main },
- { path:'edit',component:Edit },
- { path:'news',component:News }]
- },
- {
- path: '/home',
- component: Home ,
- children:[
- {
- path:'/home',
- redirect:'index'
- },
- {
- path:'index',
- component:index
- },
- {
- path:'introduce',
- name:'introduce',
- component:introduce
- },
- {
- path:'zhengce',
- name:'zhengce',
- component:zhengce
- },
- {
- path:'keXieXiangMu',
- name:'keXieXiangMu',
- component:keXieXiangMu
- },
- {
- path:'xueShuJiaoLiu',
- name:'xueShuJiaoLiu',
- component:xueShuJiaoLiu
- },
- {
- path:'banShiZhiNan',
- name:'banShiZhiNan',
- component:banShiZhiNan
- },
- {
- path:'kePuFengCai',
- name:'kePuFengCai',
- component:kePuFengCai
- },
- {
- path:'xueXiaoShouYe',
- name:'xueXiaoShouYe',
- component:xueXiaoShouYe
- },
- {
- path:'telephone',
- name:'telephone',
- component:telephone
- },
- {
- path:'moreMessage',
- name:'moreMessage',
- component:moreMessage
- },
- {
- path:'news',
- name:'News',
- component:News
- },
+ children: [
+ { path: 'welcome', component: Welcome },
+ { path: 'main', component: Main },
+ { path: 'edit', component: Edit },
+ { path: 'news', component: News },
+ { path: 'editlunbo', component: EditLunBo },
+ { path: 'admain', component: AdMain },
+ { path: 'adedit', component: AdEdit }
]
},
- { path:'*',component:NotFound }
+ {
+ path: '/home',
+ component: Home,
+ children: [
+ {
+ path: '/home',
+ redirect: 'index'
+ },
+ {
+ path: 'index',
+ component: index
+ },
+ {
+ path: 'introduce',
+ name: 'introduce',
+ component: introduce
+ },
+ {
+ path: 'zhengce',
+ name: 'zhengce',
+ component: zhengce
+ },
+ {
+ path: 'keXieXiangMu',
+ name: 'keXieXiangMu',
+ component: keXieXiangMu
+ },
+ {
+ path: 'xueShuJiaoLiu',
+ name: 'xueShuJiaoLiu',
+ component: xueShuJiaoLiu
+ },
+ {
+ path: 'banShiZhiNan',
+ name: 'banShiZhiNan',
+ component: banShiZhiNan
+ },
+ {
+ path: 'kePuFengCai',
+ name: 'kePuFengCai',
+ component: kePuFengCai
+ },
+ {
+ path: 'xueXiaoShouYe',
+ name: 'xueXiaoShouYe',
+ component: xueXiaoShouYe
+ },
+ {
+ path: 'telephone',
+ name: 'telephone',
+ component: telephone
+ },
+ {
+ path: 'moreMessage',
+ name: 'moreMessage',
+ component: moreMessage
+ },
+ {
+ path: 'news',
+ name: 'News',
+ component: News
+ }
+ ]
+ },
+ { path: '*', component: NotFound }
],
- scrollBehavior(to, from, savedPosition) { //椤甸潰璺宠浆鍚庤嚜鍔ㄥ洖鍒伴《閮�
+ scrollBehavior(to, from, savedPosition) {
+ //椤甸潰璺宠浆鍚庤嚜鍔ㄥ洖鍒伴《閮�
if (savedPosition) {
- return savedPosition
+ return savedPosition
}
- return {x: 0, y: 0}
+ return { x: 0, y: 0 }
}
})
@@ -113,10 +122,15 @@
// from 浠h〃浠庡摢涓矾寰勮烦杞�屾潵
// next 鏄竴涓嚱鏁帮紝琛ㄧず鏀捐
// next() 鏀捐 next('/login') 寮哄埗璺宠浆
-
- if (to.path === '/login') return next()
+ // if (to.path === '/administrator/main' && !tokenStr) return next()
+ // if (to.path === '/home/index') return next()
// 鑾峰彇token
const tokenStr = window.sessionStorage.getItem('token')
+ if (to.path === '/administrator/main' && !tokenStr) return next('/login')
+ if (to.path === '/administrator/admain' && !tokenStr) return next('/login')
+ if (to.path === '/administrator' && !tokenStr) return next('/login')
+ if (to.path === '/administrator/edit' && !tokenStr) return next('/login')
+ if (to.path === '/administrator/welcome' && !tokenStr) return next('/login')
// if (!tokenStr) return next('/login')
next()
})
--
Gitblit v1.8.0