|
@@ -3,6 +3,8 @@ 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"
|
|
|
+
|
|
|
+let uid = "";
|
|
|
// eslint-disable-next-line prettier/prettier
|
|
|
|
|
|
// let flag = false; //查看是否登录
|
|
@@ -18,7 +20,7 @@ import md5 from "./plugins/md5.min.js"
|
|
|
function userLogin(callback) {
|
|
|
if (store.state.isLogin) return callback(true);
|
|
|
ajax.post(store.state.api + '/userLogin', {
|
|
|
- id: getToken(),
|
|
|
+ id: uid,
|
|
|
}).then(res => {
|
|
|
if (res['data'] != "ERROR") {
|
|
|
store.commit('update', ['userInfo', res['data']]);
|
|
@@ -34,7 +36,7 @@ function userLogin(callback) {
|
|
|
|
|
|
function getSystemState(to, callback) {
|
|
|
ajax.get(store.state.api + '/getSystemState', {
|
|
|
- uid: getToken(),
|
|
|
+ uid: uid,
|
|
|
}).then(res => {
|
|
|
let state = res['data'][0][0]['state'];
|
|
|
store.commit('update', ['systemState', state]);
|
|
@@ -55,7 +57,8 @@ router.beforeEach(async(to, from, next) => {
|
|
|
console.log(response);
|
|
|
let data = response.data.replaceAll("\'", "\"")
|
|
|
if (data && JSON.parse(data).uid) {
|
|
|
- setToken(md5(JSON.parse(data).uid));
|
|
|
+ uid = JSON.parse(data).uid;
|
|
|
+ setToken(btoa(md5(JSON.parse(data).uid)));
|
|
|
// testApi();
|
|
|
userLogin((isLogin) => {
|
|
|
getSystemState(to, () => {
|
|
@@ -82,7 +85,7 @@ router.beforeEach(async(to, from, next) => {
|
|
|
}
|
|
|
} catch {
|
|
|
// setToken('2021400203')//yym
|
|
|
- // setToken("1270"); //wyt
|
|
|
+ // setToken(btoa(md5("1270"))); //wyt
|
|
|
|
|
|
// userLogin((isLogin) => {
|
|
|
// getSystemState(to, () => {
|