Browse Source

放开前端跳转权限校验

master
Gao xiaosong 4 years ago
parent
commit
7817ac45d8
  1. 46
      utils/index.js

46
utils/index.js

@ -549,26 +549,32 @@ export const handleLoginStatus = (location, complete, fail, success) => {
} }
console.log(isAuth) console.log(isAuth)
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (isAuth) { resolve({
// 有token url: parseUrl(location),
if (path == '/pages/home/index' || path == '/pages/shop/GoodsClass/index' || path == '/pages/shop/ShoppingCart/index' || path == '/pages/user/User/index') { complete,
// switchTab({ fail,
// path: parseUrl(location), success,
// }) })
// return // if (isAuth) {
} // // 有token
// if (path == '/pages/home/index' || path == '/pages/shop/GoodsClass/index' || path == '/pages/shop/ShoppingCart/index' || path == '/pages/user/User/index') {
resolve({ // // switchTab({
url: parseUrl(location), // // path: parseUrl(location),
complete, // // })
fail, // // return
success, // }
})
} else { // resolve({
// 没有token,先校验用户是否授权,如果授权了,进行自动登录 // url: parseUrl(location),
routerPermissions(parseUrl(location)) // complete,
reject() // fail,
} // success,
// })
// } else {
// // 没有token,先校验用户是否授权,如果授权了,进行自动登录
// routerPermissions(parseUrl(location))
// reject()
// }
}).catch(error => { }).catch(error => {
console.log(error) console.log(error)
}) })

Loading…
Cancel
Save