您好,登錄后才能下訂單哦!
router.beforeEach((to, from, next) => {
if (to.meta.requireAuth) {
let user = Storage.get('user');
// Storage.get('JSESSIONID');
// 測試人員錄入基本資料后,需要服務端向前端返回一個標記,用來判斷是否可以進入題庫
let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)
let submited = Storage.get("submit")
if (flag && to.path == "/paper" && from.path == "/") {
if (submited) {
next()
} else {
next({path: '/nopower'});
}
return;
}
if (!user) {
next({path: '/login'});
} else {
next();
}
// if (storage.get('platformUser')) {
// store.dispatch('loginUser', JSON.parse(storage.get('platformUser'))); //將用戶信息存儲到vuex中,供全局使用
// next();
// } else {
// store.dispatch('initLoginModal', {state: true}); //顯示登錄彈窗
// next();
// }
} else {
next();
}
});
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。