|
@@ -1,7 +1,11 @@
|
|
|
<template>
|
|
|
- <div class="login-container">
|
|
|
+ <div :style="{'background':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">
|
|
|
+ <img src="@/assets/logo/error.png">
|
|
|
+ </el-avatar>
|
|
|
+ <!-- <el-divider direction="vertical"></el-divider> -->
|
|
|
<div class="content-box">
|
|
|
<div class="title">{{ pageTitle }}</div>
|
|
|
</div>
|
|
@@ -29,9 +33,11 @@
|
|
|
|
|
|
<script>
|
|
|
import { isValue } from "@/utils/validate";
|
|
|
-import { getVCode, getToken } from "@/api/login";
|
|
|
-import { setCodeToken, getCodeToken, setToken } from '@/utils/auth';
|
|
|
+import { getVCode, getToken, getKey, forceLogin } from "@/api/login";
|
|
|
+import { setToken, TokenKey, getUserId, removeToken } from '@/utils/auth';
|
|
|
import MD5 from 'blueimp-md5'
|
|
|
+import JSEncrypt from "jsencrypt";
|
|
|
+const defaultBgImg = require('@/assets/loginpage/bg.jpg')
|
|
|
export default {
|
|
|
name: "Login",
|
|
|
data () {
|
|
@@ -59,7 +65,9 @@ export default {
|
|
|
pageTitle: '',
|
|
|
imgSrc: '',
|
|
|
baseImg: '',
|
|
|
- appId: ''
|
|
|
+ appId: '',
|
|
|
+ backgroundImg: '',
|
|
|
+ defaultBgImg
|
|
|
};
|
|
|
},
|
|
|
async created () {
|
|
@@ -69,15 +77,16 @@ export default {
|
|
|
'appsecret': PLATFROM_CONFIG.appKeyString
|
|
|
})
|
|
|
if (code == 0 && isValue(returnData)) {
|
|
|
- const { appenname, appname, background, expirestime, logo, securitycoderule, smalllogo, token } = returnData;
|
|
|
- this.imgSrc = window.location.origin + logo
|
|
|
- this.pageTitle = appname
|
|
|
+ const { appname, background, logo, securitycoderule, smalllogo, token } = returnData;
|
|
|
+ this.imgSrc = logo
|
|
|
+ this.pageTitle = appname ?? '行李全流程跟踪系统'
|
|
|
this.isCode = securitycoderule
|
|
|
- setCodeToken(token);
|
|
|
+ this.backgroundImg = background
|
|
|
+ setToken(TokenKey, token);
|
|
|
sessionStorage.setItem('appConfig', JSON.stringify({ ...returnData }))
|
|
|
// setToken('active_duration', active_duration);
|
|
|
sessionStorage.setItem('appLog', logo)
|
|
|
- sessionStorage.setItem('appName', appname)
|
|
|
+ sessionStorage.setItem('appName', this.pageTitle)
|
|
|
if (securitycoderule) {
|
|
|
this.getCheckCode()
|
|
|
}
|
|
@@ -99,41 +108,86 @@ export default {
|
|
|
this.$refs.password.focus();
|
|
|
});
|
|
|
},
|
|
|
- // 登录
|
|
|
+ // 登录前获取公匙
|
|
|
handleLogin () {
|
|
|
- this.$refs.loginForm.validate((valid) => {
|
|
|
+ this.$refs.loginForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
- this.loading = true;
|
|
|
- const params = {
|
|
|
- app_token: getCodeToken(),
|
|
|
- username: this.loginForm.username.replace(/\s+/g, ""),
|
|
|
- password: MD5(this.loginForm.password.replace(/\s+/g, "")),
|
|
|
- // password: this.loginForm.password.replace(/\s+/g, ""),
|
|
|
- verifyCode: this.loginForm.identify.replace(/\s+/g, ""),
|
|
|
- };
|
|
|
- this.$store
|
|
|
- .dispatch("user/login", params)
|
|
|
- .then(async () => {
|
|
|
- this.$store.dispatch("app/toggleOutcheck", false);
|
|
|
- sessionStorage.setItem("userName", params.username);
|
|
|
- this.$router.push({ path: this.redirect || "/" });
|
|
|
- this.loading = false;
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.getCheckCode();
|
|
|
- this.loading = false;
|
|
|
- });
|
|
|
+ const { code, message, returnData } = await getKey();
|
|
|
+ if (code == 0 && isValue(returnData)) {
|
|
|
+ const { pubKeyStr } = returnData
|
|
|
+ sessionStorage.setItem('pubKeyStr', pubKeyStr)
|
|
|
+ this.qdLogin(pubKeyStr)
|
|
|
+ } else {
|
|
|
+ this.$message.error(message);
|
|
|
+ }
|
|
|
+
|
|
|
} else {
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ //确认登录
|
|
|
+ qdLogin (pubKeyStr) {
|
|
|
+ this.loading = true;
|
|
|
+ const jse = new JSEncrypt()
|
|
|
+ jse.setPublicKey(pubKeyStr)
|
|
|
+ const params = {
|
|
|
+ account: this.loginForm.username.replace(/\s+/g, ""),
|
|
|
+ password: jse.encrypt(this.loginForm.password.replace(/\s+/g, "")),
|
|
|
+ };
|
|
|
+ if (this.isCode) {
|
|
|
+ params.verifycode = jse.encrypt(this.loginForm.identify.replace(/\s+/g, ""))
|
|
|
+ }
|
|
|
+ this.$store
|
|
|
+ .dispatch("user/login", params)
|
|
|
+ .then(async (res) => {
|
|
|
+ if (res) {
|
|
|
+ this.dialogOpen()
|
|
|
+ } else {
|
|
|
+ this.userLogin()
|
|
|
+ }
|
|
|
+ this.loading = false;
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.getCheckCode();
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //账号已经登录弹框
|
|
|
+ dialogOpen () {
|
|
|
+ this.$confirm('该账号已登录, 是否强制登录?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.userLogin()
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消登录'
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //账号强制登录
|
|
|
+ async userLogin () {
|
|
|
+ const { code, message, returnData } = await forceLogin({
|
|
|
+ userid: getUserId()
|
|
|
+ });
|
|
|
+ if (code == 0 && isValue(returnData)) {
|
|
|
+ setToken('usertoken', returnData.usertoken)
|
|
|
+ this.$store.dispatch("app/toggleOutcheck", false);
|
|
|
+ sessionStorage.setItem("userName", this.loginForm.username.replace(/\s+/g, ""));
|
|
|
+ this.$router.push({ path: this.redirect || "/" });
|
|
|
+ } else {
|
|
|
+ this.$message.error(message);
|
|
|
+ }
|
|
|
+ },
|
|
|
//获取动态验证码
|
|
|
async getCheckCode () {
|
|
|
const { code, message, returnData } = await getVCode();
|
|
|
if (code == 0 && isValue(returnData)) {
|
|
|
- const { verifyCode } = returnData;
|
|
|
- this.baseImg = "data:image/gif;base64," + verifyCode;
|
|
|
+ const { verifyCodeImage } = returnData;
|
|
|
+ this.baseImg = verifyCodeImage;
|
|
|
} else {
|
|
|
this.$message.error(message);
|
|
|
}
|
|
@@ -142,6 +196,9 @@ export default {
|
|
|
changeCode () {
|
|
|
this.getCheckCode();
|
|
|
},
|
|
|
+ errorHandler () {
|
|
|
+ return true
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -156,7 +213,7 @@ $light_gray: #eee;
|
|
|
width: 100%;
|
|
|
background-color: $bg;
|
|
|
overflow: hidden;
|
|
|
- background-image: url("../../assets/loginpage/bg.jpg");
|
|
|
+ //background-image: url("../../assets/loginpage/bg.jpg");
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: cover;
|
|
|
display: flex;
|