|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div :style="{'background':backgroundImg ? 'url('+backgroundImg+')' :'url('+defaultBgImg+')'}" class="login-container">
|
|
|
+ <div :style="{'backgroundImage':backgroundImg ? 'url('+backgroundImg+')' :'url('+defaultBgImg+')'}" class="login-container">
|
|
|
<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on" label-position="left">
|
|
|
<div class="title-container flex-wrap">
|
|
|
<el-avatar :size="36" :src="imgSrc" @error="errorHandler">
|
|
@@ -77,15 +77,15 @@ export default {
|
|
|
'appsecret': PLATFROM_CONFIG.appKeyString
|
|
|
})
|
|
|
if (code == 0 && isValue(returnData)) {
|
|
|
- const { appname, background, logo, securitycoderule, smalllogo, token } = returnData;
|
|
|
- this.imgSrc = logo
|
|
|
+ const { appname, backgroundimage, applogo, securitycoderule, smalllogo, token } = returnData;
|
|
|
+ this.imgSrc = smalllogo
|
|
|
this.pageTitle = appname ?? '行李全流程跟踪系统'
|
|
|
this.isCode = securitycoderule
|
|
|
- this.backgroundImg = background
|
|
|
+ this.backgroundImg = backgroundimage
|
|
|
setToken(TokenKey, token);
|
|
|
sessionStorage.setItem('appConfig', JSON.stringify({ ...returnData }))
|
|
|
// setToken('active_duration', active_duration);
|
|
|
- sessionStorage.setItem('appLog', logo)
|
|
|
+ sessionStorage.setItem('appLogo', applogo)
|
|
|
sessionStorage.setItem('appName', this.pageTitle)
|
|
|
if (securitycoderule) {
|
|
|
this.getCheckCode()
|
|
@@ -144,7 +144,7 @@ export default {
|
|
|
this.loginForm.password = ""
|
|
|
this.loginForm.identify = ""
|
|
|
this.changeCode()
|
|
|
- if (res==1) {
|
|
|
+ if (res == 1) {
|
|
|
this.dialogOpen()
|
|
|
} else {
|
|
|
this.userLogin()
|
|
@@ -191,7 +191,7 @@ export default {
|
|
|
const { code, message, returnData } = await getVCode();
|
|
|
if (code == 0 && isValue(returnData)) {
|
|
|
const { verifyCodeImage } = returnData;
|
|
|
- this.loginForm.identify="";
|
|
|
+ this.loginForm.identify = "";
|
|
|
this.baseImg = verifyCodeImage;
|
|
|
} else {
|
|
|
this.$message.error(message);
|
|
@@ -220,7 +220,7 @@ $light_gray: #eee;
|
|
|
overflow: hidden;
|
|
|
//background-image: url("../../assets/loginpage/bg.jpg");
|
|
|
background-repeat: no-repeat;
|
|
|
- background-size: cover;
|
|
|
+ background-size: 100% 100%;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|