|
@@ -53,15 +53,14 @@ router.beforeEach(async(to, from, next) => {
|
|
|
|
|
|
try {
|
|
|
// throw Error('测试')
|
|
|
- // const response = await ajax.get('https://cxcy.ssti.net.cn/sso/api');
|
|
|
- // console.log(response);
|
|
|
- // let data = response.data.replaceAll("\'", "\"")
|
|
|
- // if (data && JSON.parse(data).uid) {
|
|
|
- // uid = JSON.parse(data).uid;
|
|
|
- uid = "1270";//本地
|
|
|
- // uid = "201901766";//本地
|
|
|
- // setToken(btoa(md5(JSON.parse(data).uid)));
|
|
|
- setToken(btoa(md5(uid)));
|
|
|
+ const response = await ajax.get('https://cxcy.ssti.net.cn/sso/api');
|
|
|
+ console.log(response);
|
|
|
+ let data = response.data.replaceAll("\'", "\"")
|
|
|
+ if (data && JSON.parse(data).uid) {
|
|
|
+ uid = JSON.parse(data).uid;
|
|
|
+ // uid = "1270";//本地
|
|
|
+ setToken(btoa(md5(JSON.parse(data).uid)));
|
|
|
+ // setToken(btoa(md5("1270")));
|
|
|
// testApi();
|
|
|
userLogin((isLogin) => {
|
|
|
getSystemState(to, () => {
|
|
@@ -72,35 +71,33 @@ router.beforeEach(async(to, from, next) => {
|
|
|
})
|
|
|
});
|
|
|
|
|
|
- // } else {
|
|
|
- // // setToken('2021400203')//yym
|
|
|
- // // setToken("201901766");//qgt
|
|
|
+ } else {
|
|
|
+ // setToken('2021400203')//yym
|
|
|
+ // setToken("201901766");//qgt
|
|
|
|
|
|
- // // userLogin((isLogin)=>{
|
|
|
- // // getSystemState(to,()=>{
|
|
|
- // // if(!isLogin&&to.name!='resultShowDetail'){
|
|
|
- // // store.commit('getPlanEndProjectData');
|
|
|
- // // }
|
|
|
- // // next()
|
|
|
- // // })
|
|
|
- // // });
|
|
|
- // window.location.href = "https://cxcy.ssti.net.cn/sso/caslogin.jsp";
|
|
|
- // }
|
|
|
+ // userLogin((isLogin)=>{
|
|
|
+ // getSystemState(to,()=>{
|
|
|
+ // if(!isLogin&&to.name!='resultShowDetail'){
|
|
|
+ // store.commit('getPlanEndProjectData');
|
|
|
+ // }
|
|
|
+ // next()
|
|
|
+ // })
|
|
|
+ // });
|
|
|
+ window.location.href = "https://cxcy.ssti.net.cn/sso/caslogin.jsp";
|
|
|
+ }
|
|
|
} catch {
|
|
|
- uid = "1270";//本地
|
|
|
- // uid = "201901766";//本地
|
|
|
// setToken('2021400203')//yym
|
|
|
- setToken(btoa(md5(uid))); //wyt
|
|
|
+ // setToken(btoa(md5("1270"))); //wyt
|
|
|
|
|
|
- userLogin((isLogin) => {
|
|
|
- getSystemState(to, () => {
|
|
|
- if (!isLogin && to.name != 'resultShowDetail') {
|
|
|
- store.commit('getPlanEndProjectData');
|
|
|
- }
|
|
|
- next()
|
|
|
- })
|
|
|
- });
|
|
|
- // window.location.href = "https://cxcy.ssti.net.cn/sso/caslogin.jsp";
|
|
|
+ // userLogin((isLogin) => {
|
|
|
+ // getSystemState(to, () => {
|
|
|
+ // if (!isLogin && to.name != 'resultShowDetail') {
|
|
|
+ // store.commit('getPlanEndProjectData');
|
|
|
+ // }
|
|
|
+ // next()
|
|
|
+ // })
|
|
|
+ // });
|
|
|
+ window.location.href = "https://cxcy.ssti.net.cn/sso/caslogin.jsp";
|
|
|
}
|
|
|
// determine whether the user has logged in
|
|
|
|