Commit cf7b73c6 authored by 赵啸非's avatar 赵啸非

修改端口

parent 03a0659b
...@@ -119,9 +119,9 @@ router.afterEach(() => { ...@@ -119,9 +119,9 @@ router.afterEach(() => {
// 路由鉴权 // 路由鉴权
router.beforeEach((to, from, next) => { router.beforeEach((to, from, next) => {
if (ssoCheck(to, from, next)) { //sso鉴权检查 // if (ssoCheck(to, from, next)) { //sso鉴权检查
return // return
} // }
if (to.matched.some(record => record.meta.requiresAuth)) { if (to.matched.some(record => record.meta.requiresAuth)) {
if (Store.state.isLogin) { if (Store.state.isLogin) {
next(); next();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment