|
@@ -2,17 +2,18 @@ import router from '@/router'
|
|
|
import store from '@/config/config'
|
|
|
import ajax from '@/api/userApi'
|
|
|
import { setToken, getToken } from '@/utils/auth' // get token from cookie
|
|
|
+import md5 from "./plugins/md5.min.js"
|
|
|
// eslint-disable-next-line prettier/prettier
|
|
|
|
|
|
// let flag = false; //查看是否登录
|
|
|
|
|
|
-function testApi() {
|
|
|
- ajax.post(store.state.api + '/testApi').then(res => {
|
|
|
- console.log(res)
|
|
|
- }).catch(err => {
|
|
|
- console.log(err)
|
|
|
- })
|
|
|
-}
|
|
|
+// function testApi() {
|
|
|
+// ajax.post(store.state.api + '/testApi').then(res => {
|
|
|
+// console.log(res)
|
|
|
+// }).catch(err => {
|
|
|
+// console.log(err)
|
|
|
+// })
|
|
|
+// }
|
|
|
|
|
|
function userLogin(callback) {
|
|
|
if (store.state.isLogin) return callback(true);
|
|
@@ -54,8 +55,8 @@ router.beforeEach(async(to, from, next) => {
|
|
|
console.log(response);
|
|
|
let data = response.data.replaceAll("\'", "\"")
|
|
|
if (data && JSON.parse(data).uid) {
|
|
|
- setToken(JSON.parse(data).uid);
|
|
|
- testApi();
|
|
|
+ setToken(md5(JSON.parse(data).uid));
|
|
|
+ // testApi();
|
|
|
userLogin((isLogin) => {
|
|
|
getSystemState(to, () => {
|
|
|
if (!isLogin && to.name != 'resultShowDetail') {
|