|
@@ -38,7 +38,7 @@
|
|
|
<script>
|
|
|
import { isValue } from "@/utils/validate";
|
|
|
import { getVCode, getToken, getKey, forceLogin } from "@/api/login";
|
|
|
-import { setToken, TokenKey, getUserId, setCodeToken } from '@/utils/auth';
|
|
|
+import { setToken, TokenKey, getUserId, setCodeToken,setSessionid } from '@/utils/auth';
|
|
|
import MD5 from 'blueimp-md5'
|
|
|
import JSEncrypt from "jsencrypt";
|
|
|
const defaultBgImg = require('@/assets/loginpage/bg.jpg')
|
|
@@ -81,12 +81,13 @@ export default {
|
|
|
'appsecret': PLATFROM_CONFIG.appKeyString
|
|
|
})
|
|
|
if (code == 0 && isValue(returnData)) {
|
|
|
- const { appname, backgroundimage, applogo, securitycoderule, smalllogo, token } = returnData;
|
|
|
+ const { appname, backgroundimage, applogo, securitycoderule, smalllogo, token,sessionid } = returnData;
|
|
|
this.imgSrc = smalllogo
|
|
|
this.pageTitle = appname ?? '行李全流程跟踪系统'
|
|
|
this.isCode = securitycoderule
|
|
|
this.backgroundImg = backgroundimage
|
|
|
setToken(TokenKey, token);
|
|
|
+ setSessionid("sessionid", sessionid);
|
|
|
sessionStorage.setItem('appConfig', JSON.stringify({ ...returnData }))
|
|
|
// setToken('active_duration', active_duration);
|
|
|
sessionStorage.setItem('appLogo', applogo)
|