|
|
|
|
@ -1,5 +1,6 @@ |
|
|
|
|
<template> |
|
|
|
|
<el-form class="login-form" |
|
|
|
|
<el-form |
|
|
|
|
class="login-form" |
|
|
|
|
status-icon |
|
|
|
|
:rules="loginRules" |
|
|
|
|
ref="loginForm" |
|
|
|
|
@ -16,21 +17,29 @@ |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> --> |
|
|
|
|
<el-form-item prop="username" label="用户名"> |
|
|
|
|
<el-input size="small" |
|
|
|
|
<el-input |
|
|
|
|
size="small" |
|
|
|
|
@keyup.enter.native="handleLogin" |
|
|
|
|
v-model="loginForm.username" |
|
|
|
|
auto-complete="off" |
|
|
|
|
:placeholder="$t('login.username')"> |
|
|
|
|
:placeholder="$t('login.username')" |
|
|
|
|
> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item prop="password" label="密码"> |
|
|
|
|
<el-input size="small" |
|
|
|
|
<el-input |
|
|
|
|
size="small" |
|
|
|
|
@keyup.enter.native="handleLogin" |
|
|
|
|
:type="passwordType" |
|
|
|
|
v-model="loginForm.password" |
|
|
|
|
auto-complete="off" |
|
|
|
|
:placeholder="$t('login.password')"> |
|
|
|
|
<i class="el-icon-view el-input__icon" slot="suffix" @click="showPassword"/> |
|
|
|
|
:placeholder="$t('login.password')" |
|
|
|
|
> |
|
|
|
|
<i |
|
|
|
|
class="el-icon-view el-input__icon" |
|
|
|
|
slot="suffix" |
|
|
|
|
@click="showPassword" |
|
|
|
|
/> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<div><el-checkbox v-model="rememberPwd">记住密码</el-checkbox></div> |
|
|
|
|
@ -54,17 +63,25 @@ |
|
|
|
|
</el-row> |
|
|
|
|
</el-form-item> --> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
size="small" |
|
|
|
|
@click.native.prevent="handleLogin" |
|
|
|
|
class="login-submit">{{$t('login.submit')}} |
|
|
|
|
class="login-submit" |
|
|
|
|
>{{ $t("login.submit") }} |
|
|
|
|
</el-button> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-dialog title="用户信息选择" |
|
|
|
|
<el-dialog |
|
|
|
|
title="用户信息选择" |
|
|
|
|
append-to-body |
|
|
|
|
:visible.sync="userBox" |
|
|
|
|
width="350px"> |
|
|
|
|
<avue-form :option="userOption" v-model="userForm" @submit="submitLogin"/> |
|
|
|
|
width="350px" |
|
|
|
|
> |
|
|
|
|
<avue-form |
|
|
|
|
:option="userOption" |
|
|
|
|
v-model="userForm" |
|
|
|
|
@submit="submitLogin" |
|
|
|
|
/> |
|
|
|
|
</el-dialog> |
|
|
|
|
</el-form> |
|
|
|
|
</template> |
|
|
|
|
@ -74,7 +91,7 @@ |
|
|
|
|
import { info } from "@/api/system/tenant"; |
|
|
|
|
import { getCaptcha } from "@/api/user"; |
|
|
|
|
import { getTopUrl } from "@/util/util"; |
|
|
|
|
|
|
|
|
|
import { Base64 } from 'js-base64'; |
|
|
|
|
export default { |
|
|
|
|
name: "userlogin", |
|
|
|
|
data() { |
|
|
|
|
@ -89,9 +106,9 @@ |
|
|
|
|
//角色ID |
|
|
|
|
roleId: "", |
|
|
|
|
//用户名 |
|
|
|
|
username: "admin", |
|
|
|
|
username: "", |
|
|
|
|
//密码 |
|
|
|
|
password: "admin", |
|
|
|
|
password: "", |
|
|
|
|
//账号类型 |
|
|
|
|
type: "account", |
|
|
|
|
//验证码的值 |
|
|
|
|
@ -99,68 +116,73 @@ |
|
|
|
|
//验证码的索引 |
|
|
|
|
key: "", |
|
|
|
|
//预加载白色背景 |
|
|
|
|
image: "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7", |
|
|
|
|
image: |
|
|
|
|
"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7", |
|
|
|
|
}, |
|
|
|
|
loginRules: { |
|
|
|
|
// tenantId: [ |
|
|
|
|
// {required: false, message: "请输入租户ID", trigger: "blur"} |
|
|
|
|
// ], |
|
|
|
|
username: [ |
|
|
|
|
{required: true, message: "请输入用户名", trigger: "blur"} |
|
|
|
|
{ required: true, message: "请输入用户名", trigger: "blur" }, |
|
|
|
|
], |
|
|
|
|
password: [ |
|
|
|
|
{ required: true, message: "请输入密码", trigger: "blur" }, |
|
|
|
|
{min: 1, message: "密码长度最少为6位", trigger: "blur"} |
|
|
|
|
] |
|
|
|
|
{ min: 1, message: "密码长度最少为6位", trigger: "blur" }, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
passwordType: "password", |
|
|
|
|
userBox: false, |
|
|
|
|
userForm: { |
|
|
|
|
deptId: '', |
|
|
|
|
roleId: '' |
|
|
|
|
deptId: "", |
|
|
|
|
roleId: "", |
|
|
|
|
}, |
|
|
|
|
userOption: { |
|
|
|
|
labelWidth: 70, |
|
|
|
|
submitBtn: true, |
|
|
|
|
emptyBtn: false, |
|
|
|
|
submitText: '登录', |
|
|
|
|
submitText: "登录", |
|
|
|
|
column: [ |
|
|
|
|
{ |
|
|
|
|
label: '部门', |
|
|
|
|
prop: 'deptId', |
|
|
|
|
type: 'select', |
|
|
|
|
label: "部门", |
|
|
|
|
prop: "deptId", |
|
|
|
|
type: "select", |
|
|
|
|
props: { |
|
|
|
|
label: 'deptName', |
|
|
|
|
value: 'id' |
|
|
|
|
label: "deptName", |
|
|
|
|
value: "id", |
|
|
|
|
}, |
|
|
|
|
dicUrl: '/api/blade-system/dept/select', |
|
|
|
|
dicUrl: "/api/blade-system/dept/select", |
|
|
|
|
span: 24, |
|
|
|
|
display: false, |
|
|
|
|
rules: [{ |
|
|
|
|
rules: [ |
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: "请选择部门", |
|
|
|
|
trigger: "blur" |
|
|
|
|
}], |
|
|
|
|
trigger: "blur", |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '角色', |
|
|
|
|
prop: 'roleId', |
|
|
|
|
type: 'select', |
|
|
|
|
label: "角色", |
|
|
|
|
prop: "roleId", |
|
|
|
|
type: "select", |
|
|
|
|
props: { |
|
|
|
|
label: 'roleName', |
|
|
|
|
value: 'id' |
|
|
|
|
label: "roleName", |
|
|
|
|
value: "id", |
|
|
|
|
}, |
|
|
|
|
dicUrl: '/api/blade-system/role/select', |
|
|
|
|
dicUrl: "/api/blade-system/role/select", |
|
|
|
|
span: 24, |
|
|
|
|
display: false, |
|
|
|
|
rules: [{ |
|
|
|
|
rules: [ |
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: "请选择角色", |
|
|
|
|
trigger: "blur" |
|
|
|
|
}], |
|
|
|
|
trigger: "blur", |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
] |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
@ -168,39 +190,45 @@ |
|
|
|
|
this.refreshCode(); |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
let username = localStorage.getItem("username"); |
|
|
|
|
if (username) { |
|
|
|
|
this.loginForm.username = localStorage.getItem("username"); |
|
|
|
|
this.loginForm.password = Base64.decode(localStorage.getItem("password")); // base64解密 |
|
|
|
|
this.rememberPwd = true; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
'loginForm.deptId'() { |
|
|
|
|
"loginForm.deptId"() { |
|
|
|
|
const column = this.findObject(this.userOption.column, "deptId"); |
|
|
|
|
if (this.loginForm.deptId.includes(",")) { |
|
|
|
|
column.dicUrl = `/api/blade-system/dept/select?deptId=${this.loginForm.deptId}`; |
|
|
|
|
column.display = true; |
|
|
|
|
} else { |
|
|
|
|
column.dicUrl = ''; |
|
|
|
|
column.dicUrl = ""; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
'loginForm.roleId'() { |
|
|
|
|
"loginForm.roleId"() { |
|
|
|
|
const column = this.findObject(this.userOption.column, "roleId"); |
|
|
|
|
if (this.loginForm.roleId.includes(",")) { |
|
|
|
|
column.dicUrl = `/api/blade-system/role/select?roleId=${this.loginForm.roleId}`; |
|
|
|
|
column.display = true; |
|
|
|
|
} else { |
|
|
|
|
column.dicUrl = ''; |
|
|
|
|
} |
|
|
|
|
column.dicUrl = ""; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters(["tagWel", "userInfo"]) |
|
|
|
|
...mapGetters(["tagWel", "userInfo"]), |
|
|
|
|
}, |
|
|
|
|
props: [], |
|
|
|
|
methods: { |
|
|
|
|
refreshCode() { |
|
|
|
|
if (this.website.captchaMode) { |
|
|
|
|
getCaptcha().then(res => { |
|
|
|
|
getCaptcha().then((res) => { |
|
|
|
|
const data = res.data; |
|
|
|
|
this.loginForm.key = data.key; |
|
|
|
|
this.loginForm.image = data.image; |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
showPassword() { |
|
|
|
|
@ -209,24 +237,35 @@ |
|
|
|
|
: (this.passwordType = ""); |
|
|
|
|
}, |
|
|
|
|
submitLogin(form, done) { |
|
|
|
|
if (form.deptId !== '') { |
|
|
|
|
if (form.deptId !== "") { |
|
|
|
|
this.loginForm.deptId = form.deptId; |
|
|
|
|
} |
|
|
|
|
if (form.roleId !== '') { |
|
|
|
|
if (form.roleId !== "") { |
|
|
|
|
this.loginForm.roleId = form.roleId; |
|
|
|
|
} |
|
|
|
|
this.handleLogin(); |
|
|
|
|
done(); |
|
|
|
|
}, |
|
|
|
|
handleLogin() { |
|
|
|
|
this.$refs.loginForm.validate(valid => { |
|
|
|
|
this.$refs.loginForm.validate((valid) => { |
|
|
|
|
if (valid) { |
|
|
|
|
/* ------ 账号密码的存储 ------ */ |
|
|
|
|
if (this.rememberPwd) { |
|
|
|
|
let password = Base64.encode(this.loginForm.password); // base64加密 |
|
|
|
|
localStorage.setItem("username", this.loginForm.username); |
|
|
|
|
localStorage.setItem("password", password); |
|
|
|
|
} else { |
|
|
|
|
localStorage.removeItem("username"); |
|
|
|
|
localStorage.removeItem("password"); |
|
|
|
|
} |
|
|
|
|
const loading = this.$loading({ |
|
|
|
|
lock: true, |
|
|
|
|
text: '登录中,请稍后。。。', |
|
|
|
|
spinner: "el-icon-loading" |
|
|
|
|
text: "登录中,请稍后。。。", |
|
|
|
|
spinner: "el-icon-loading", |
|
|
|
|
}); |
|
|
|
|
this.$store.dispatch("LoginByUsername", this.loginForm).then(() => { |
|
|
|
|
this.$store |
|
|
|
|
.dispatch("LoginByUsername", this.loginForm) |
|
|
|
|
.then(() => { |
|
|
|
|
if (this.website.switchMode) { |
|
|
|
|
const deptId = this.userInfo.dept_id; |
|
|
|
|
const roleId = this.userInfo.role_id; |
|
|
|
|
@ -242,7 +281,8 @@ |
|
|
|
|
} |
|
|
|
|
this.$router.push({ path: this.tagWel.value }); |
|
|
|
|
loading.close(); |
|
|
|
|
}).catch(() => { |
|
|
|
|
}) |
|
|
|
|
.catch(() => { |
|
|
|
|
loading.close(); |
|
|
|
|
this.refreshCode(); |
|
|
|
|
}); |
|
|
|
|
@ -253,18 +293,63 @@ |
|
|
|
|
let domain = getTopUrl(); |
|
|
|
|
// 临时指定域名,方便测试 |
|
|
|
|
//domain = "https://bladex.vip"; |
|
|
|
|
info(domain).then(res => { |
|
|
|
|
info(domain).then((res) => { |
|
|
|
|
const data = res.data; |
|
|
|
|
if (data.success && data.data.tenantId) { |
|
|
|
|
this.tenantMode = false; |
|
|
|
|
this.loginForm.tenantId = data.data.tenantId; |
|
|
|
|
this.$parent.$refs.login.style.backgroundImage = `url(${data.data.backgroundUrl})`; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
.login-submit { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 50px; |
|
|
|
|
background: #2e92f6; |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #fff; |
|
|
|
|
letter-spacing: 2px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
margin-top: 50px; |
|
|
|
|
font-family: "neo"; |
|
|
|
|
transition: 0.25s; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.login-form { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
i { |
|
|
|
|
position: absolute; |
|
|
|
|
right: 6px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
/deep/ .el-input--small .el-input__inner { |
|
|
|
|
width: 330px; |
|
|
|
|
height: 50px; |
|
|
|
|
line-height: 50px; |
|
|
|
|
border-radius: 3px 3px 3px 3px; |
|
|
|
|
color: #333; |
|
|
|
|
position: relative; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-form--label-top .el-form-item__label { |
|
|
|
|
font-size: 16px; |
|
|
|
|
color: #333; |
|
|
|
|
padding: 0 !important; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-form-item__label:before { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-checkbox__inner { |
|
|
|
|
border-color: #999; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-checkbox__label { |
|
|
|
|
color: #999; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-input__validateIcon { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|