22 lines
569 B
JavaScript
22 lines
569 B
JavaScript
import router from './router/index'
|
|
import store from './store/index'
|
|
// import accountApi from '@/api/accountApi'
|
|
|
|
|
|
router.beforeEach((to, from, next) => {
|
|
|
|
// console.log(to)
|
|
// console.log(from)
|
|
// console.log(next)
|
|
const user = store.state.user.user; //获取是有user
|
|
if (!user) { //如果没有登入
|
|
if (to.path == '/login/' || to.path == '/register/' || to.path == '/reset_password/' || to.path == '/qq/') {
|
|
next();
|
|
} else {
|
|
next({ path: '/login/' });
|
|
}
|
|
} else {
|
|
next();
|
|
}
|
|
|
|
}) |