528 lines
15 KiB
Vue
528 lines
15 KiB
Vue
<template>
|
|
<div>
|
|
|
|
<div v-show="contentShow" class="login-background">
|
|
|
|
<div class="login-container">
|
|
<el-row v-loading="loading" type="flex">
|
|
<el-col :span="12">
|
|
<div v-show="qrTypes.length" class="trans" @click="showQr">
|
|
<div v-show="imgAppShow" class="imgApp" />
|
|
</div>
|
|
<el-form v-show="!codeShow" ref="loginForm" :model="loginForm" :rules="loginRules" size="default">
|
|
|
|
<div class="login-logo">
|
|
<svg-icon v-if="!loginLogoUrl && axiosFinished" icon-class="DataEase" custom-class="login-logo-icon" />
|
|
<img v-if="loginLogoUrl && axiosFinished" :src="loginLogoUrl" alt="">
|
|
</div>
|
|
<div v-if="uiInfo && uiInfo['ui.loginTitle'] && uiInfo['ui.loginTitle'].paramValue" class="login-welcome">
|
|
{{ uiInfo['ui.loginTitle'].paramValue }}
|
|
</div>
|
|
<div v-else class="login-welcome">
|
|
{{ $t('login.welcome') + (uiInfo && uiInfo['ui.title'] && uiInfo['ui.title'].paramValue || ' DataEase') }}
|
|
</div>
|
|
<div class="login-form">
|
|
<el-form-item v-if="radioTypes.length > 1">
|
|
<el-radio-group v-if="radioTypes.length > 1" v-model="loginForm.loginType" @change="changeLoginType">
|
|
<el-radio :label="0" size="mini">{{ $t('login.default_login') }}</el-radio>
|
|
<el-radio v-if="loginTypes.includes(1)" :label="1" size="mini">LDAP</el-radio>
|
|
<el-radio v-if="loginTypes.includes(2)" :label="2" size="mini">OIDC</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item prop="username">
|
|
<el-input v-model="loginForm.username" placeholder="ID" autofocus :disabled="loginTypes.includes(2) && loginForm.loginType === 2" />
|
|
</el-form-item>
|
|
<el-form-item prop="password">
|
|
<el-input
|
|
v-model="loginForm.password"
|
|
:placeholder="$t('login.password')"
|
|
show-password
|
|
maxlength="30"
|
|
show-word-limit
|
|
autocomplete="new-password"
|
|
:disabled="loginTypes.includes(2) && loginForm.loginType === 2"
|
|
@keypress.enter.native="handleLogin"
|
|
/>
|
|
</el-form-item>
|
|
</div>
|
|
<div class="login-btn">
|
|
<el-button type="primary" class="submit" size="default" :disabled="loginTypes.includes(2) && loginForm.loginType === 2" @click.native.prevent="handleLogin">
|
|
{{ $t('commons.login') }}
|
|
</el-button>
|
|
<div v-if="uiInfo && uiInfo['ui.demo.tips'] && uiInfo['ui.demo.tips'].paramValue" class="demo-tips">
|
|
{{ uiInfo['ui.demo.tips'].paramValue }}
|
|
</div>
|
|
</div>
|
|
<div class="login-msg">
|
|
{{ msg }}
|
|
</div>
|
|
</el-form>
|
|
<div v-show="codeShow" class="code">
|
|
<el-row class="code-contaniner">
|
|
<plugin-com v-if="loginTypes.includes(4) && codeIndex === 4" ref="WecomQr" component-name="WecomQr" />
|
|
<plugin-com v-if="loginTypes.includes(5) && codeIndex === 5" ref="DingtalkQr" component-name="DingtalkQr" />
|
|
<plugin-com v-if="loginTypes.includes(6) && codeIndex === 6" ref="FarkQr" component-name="FarkQr" />
|
|
</el-row>
|
|
|
|
<div v-if="qrTypes.length > 1" class="login-third-items">
|
|
<span v-if="qrTypes.includes(4)" class="login-third-item login-third-wecom" @click="switchCodeIndex(4)" />
|
|
<span v-if="qrTypes.includes(5)" class="login-third-item login-third-dingtalk" @click="switchCodeIndex(5)" />
|
|
<span v-if="qrTypes.includes(6)" class="login-third-item login-third-fark" @click="switchCodeIndex(6)" />
|
|
</div>
|
|
|
|
</div>
|
|
</el-col>
|
|
<el-col v-loading="!axiosFinished" :span="12">
|
|
<div v-if="!loginImageUrl && axiosFinished" class="login-image" />
|
|
<div v-if="loginImageUrl && axiosFinished" class="login-image-de" :style="{background:'url(' + loginImageUrl + ') no-repeat', 'backgroundSize':'contain'}" />
|
|
</el-col>
|
|
</el-row>
|
|
|
|
</div>
|
|
<plugin-com v-if="loginTypes.includes(2) && loginForm.loginType === 2" ref="SSOComponent" component-name="SSOComponent" />
|
|
|
|
</div>
|
|
<div v-if="showFoot" class="dynamic-login-foot" v-html="footContent" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import { encrypt } from '@/utils/rsaEncrypt'
|
|
import { ldapStatus, oidcStatus, getPublicKey, pluginLoaded, defaultLoginType, wecomStatus, dingtalkStatus, farkStatus } from '@/api/user'
|
|
import { getSysUI } from '@/utils/auth'
|
|
import { changeFavicon } from '@/utils/index'
|
|
import { initTheme } from '@/utils/ThemeUtil'
|
|
import PluginCom from '@/views/system/plugin/PluginCom'
|
|
import Cookies from 'js-cookie'
|
|
export default {
|
|
name: 'Login',
|
|
components: { PluginCom },
|
|
data() {
|
|
return {
|
|
loginForm: {
|
|
loginType: 0,
|
|
username: '',
|
|
password: ''
|
|
},
|
|
loginRules: {
|
|
username: [{ required: true, trigger: 'blur', message: this.$t('commons.input_id') }],
|
|
password: [{ required: true, trigger: 'blur', message: this.$t('commons.input_pwd') }]
|
|
},
|
|
loading: false,
|
|
passwordType: 'password',
|
|
redirect: undefined,
|
|
uiInfo: null,
|
|
loginImageUrl: null,
|
|
loginLogoUrl: null,
|
|
axiosFinished: false,
|
|
loginTypes: [0],
|
|
isPluginLoaded: false,
|
|
contentShow: false,
|
|
clearLocalStorage: [
|
|
'panel-main-tree',
|
|
'panel-default-tree',
|
|
'chart-tree',
|
|
'dataset-tree'
|
|
],
|
|
defaultType: 0,
|
|
showFoot: false,
|
|
footContent: '',
|
|
codeShow: false,
|
|
imgAppShow: true,
|
|
codeIndex: 4
|
|
}
|
|
},
|
|
computed: {
|
|
msg() {
|
|
return this.$store.state.user.loginMsg
|
|
},
|
|
qrTypes() {
|
|
return this.loginTypes && this.loginTypes.filter(item => item > 3) || []
|
|
},
|
|
radioTypes() {
|
|
return this.loginTypes && this.loginTypes.filter(item => item < 4) || []
|
|
}
|
|
},
|
|
watch: {
|
|
$route: {
|
|
handler: function(route) {
|
|
this.redirect = route.query && route.query.redirect
|
|
},
|
|
immediate: true
|
|
}
|
|
},
|
|
beforeCreate() {
|
|
pluginLoaded().then(res => {
|
|
this.isPluginLoaded = res.success && res.data
|
|
this.isPluginLoaded && initTheme()
|
|
this.contentShow = true
|
|
}).catch(() => {
|
|
this.contentShow = true
|
|
})
|
|
|
|
ldapStatus().then(res => {
|
|
if (res.success && res.data) {
|
|
this.loginTypes.push(1)
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
|
|
oidcStatus().then(res => {
|
|
if (res.success && res.data) {
|
|
this.loginTypes.push(2)
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
|
|
wecomStatus().then(res => {
|
|
if (res.success && res.data) {
|
|
this.loginTypes.push(4)
|
|
const arr = this.loginTypes.filter(item => item > 3)
|
|
this.codeIndex = arr && arr.length && Math.min(...arr) || this.codeIndex
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
|
|
dingtalkStatus().then(res => {
|
|
if (res.success && res.data) {
|
|
this.loginTypes.push(5)
|
|
const arr = this.loginTypes.filter(item => item > 3)
|
|
this.codeIndex = arr && arr.length && Math.min(...arr) || this.codeIndex
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
|
|
farkStatus().then(res => {
|
|
if (res.success && res.data) {
|
|
this.loginTypes.push(6)
|
|
const arr = this.loginTypes.filter(item => item > 3)
|
|
this.codeIndex = arr && arr.length && Math.min(...arr) || this.codeIndex
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
|
|
getPublicKey().then(res => {
|
|
if (res.success && res.data) {
|
|
// 保存公钥
|
|
localStorage.setItem('publicKey', res.data)
|
|
}
|
|
})
|
|
defaultLoginType().then(res => {
|
|
if (res && res.success) {
|
|
this.defaultType = res.data
|
|
}
|
|
this.setDefaultType()
|
|
})
|
|
},
|
|
|
|
mounted() {
|
|
// this.loading = false
|
|
},
|
|
|
|
created() {
|
|
this.$store.dispatch('user/getUI').then((res) => {
|
|
this.axiosFinished = true
|
|
this.showLoginImage(res)
|
|
}).catch(err => {
|
|
console.error(err)
|
|
})
|
|
let msg = Cookies.get('OidcError')
|
|
if (msg) {
|
|
msg = msg.replace('+', '')
|
|
this.$error(msg)
|
|
}
|
|
this.clearOidcMsg()
|
|
},
|
|
|
|
methods: {
|
|
switchCodeIndex(codeIndex) {
|
|
this.codeIndex = codeIndex
|
|
},
|
|
showQr() {
|
|
this.codeShow = !this.codeShow
|
|
},
|
|
setDefaultType() {
|
|
if (this.loginTypes.includes(this.defaultType)) {
|
|
this.loginForm.loginType = this.defaultType
|
|
this.$nextTick(() => {
|
|
this.changeLoginType(this.loginForm.loginType)
|
|
})
|
|
}
|
|
},
|
|
clearOidcMsg() {
|
|
Cookies.remove('OidcError')
|
|
Cookies.remove('IdToken')
|
|
},
|
|
showLoginImage(uiInfo) {
|
|
this.uiInfo = getSysUI()
|
|
if (!this.uiInfo || Object.keys(this.uiInfo).length === 0) {
|
|
this.uiInfo = uiInfo
|
|
}
|
|
if (this.uiInfo['ui.loginImage'] && this.uiInfo['ui.loginImage'].paramValue) {
|
|
this.loginImageUrl = '/system/ui/image/' + this.uiInfo['ui.loginImage'].paramValue
|
|
}
|
|
if (this.uiInfo['ui.loginLogo'] && this.uiInfo['ui.loginLogo'].paramValue) {
|
|
this.loginLogoUrl = '/system/ui/image/' + this.uiInfo['ui.loginLogo'].paramValue
|
|
}
|
|
|
|
if (this.uiInfo['ui.favicon'] && this.uiInfo['ui.favicon'].paramValue) {
|
|
const faviconUrl = '/system/ui/image/' + this.uiInfo['ui.favicon'].paramValue
|
|
changeFavicon(faviconUrl)
|
|
}
|
|
if (this.uiInfo['ui.showFoot'] && this.uiInfo['ui.showFoot'].paramValue) {
|
|
this.showFoot = this.uiInfo['ui.showFoot'].paramValue === true || this.uiInfo['ui.showFoot'].paramValue === 'true'
|
|
if (this.showFoot) {
|
|
const content = this.uiInfo['ui.footContent'] && this.uiInfo['ui.footContent'].paramValue
|
|
this.footContent = content
|
|
}
|
|
}
|
|
},
|
|
initCache() {
|
|
this.clearLocalStorage.forEach(item => {
|
|
localStorage.removeItem(item)
|
|
})
|
|
},
|
|
|
|
handleLogin() {
|
|
this.initCache()
|
|
this.clearOidcMsg()
|
|
this.$refs.loginForm.validate(valid => {
|
|
if (valid) {
|
|
this.loading = true
|
|
const user = {
|
|
username: encrypt(this.loginForm.username),
|
|
password: encrypt(this.loginForm.password),
|
|
loginType: this.loginForm.loginType
|
|
}
|
|
this.$store.dispatch('user/login', user).then(() => {
|
|
this.$router.push({ path: this.redirect || '/' })
|
|
this.loading = false
|
|
}).catch(() => {
|
|
this.loading = false
|
|
})
|
|
} else {
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
changeLoginType(val) {
|
|
if (val !== 2) return
|
|
this.clearOidcMsg()
|
|
this.$nextTick(() => {
|
|
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "../../styles/variables";
|
|
|
|
@mixin login-center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.login-background {
|
|
background-color: var(--MainBG, $--background-color-base);
|
|
height: 100vh;
|
|
@include login-center;
|
|
}
|
|
|
|
.login-container {
|
|
min-width: 900px;
|
|
width: 1280px;
|
|
height: 520px;
|
|
background-color: var(--ContentBG, #FFFFFF);
|
|
@media only screen and (max-width: 1280px) {
|
|
width: 900px;
|
|
height: 380px;
|
|
}
|
|
|
|
.login-logo {
|
|
margin-top: 50px;
|
|
text-align: center;
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 20px;
|
|
}
|
|
img{
|
|
/*width: 240px;*/
|
|
width: auto;
|
|
max-height: 60px;
|
|
@media only screen and (max-width: 1280px) {
|
|
/*width: 200px;*/
|
|
width: auto;
|
|
max-height: 50px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.login-title {
|
|
margin-top: 50px;
|
|
font-size: 32px;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
color: #999999;
|
|
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.login-border {
|
|
height: 2px;
|
|
margin: 20px auto 20px;
|
|
position: relative;
|
|
width: 80px;
|
|
background: $--color-primary;
|
|
@media only screen and (max-width: 1280px) {
|
|
margin: 20px auto 20px;
|
|
}
|
|
}
|
|
|
|
.login-welcome {
|
|
margin-top: 20px;
|
|
font-size: 14px;
|
|
color: $--color-primary;
|
|
letter-spacing: 0;
|
|
line-height: 18px;
|
|
text-align: center;
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.demo-tips {
|
|
margin-top: 20px;
|
|
font-size: 18px;
|
|
color: $--color-danger;
|
|
letter-spacing: 0;
|
|
line-height: 18px;
|
|
text-align: center;
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.login-form {
|
|
margin-top: 80px;
|
|
padding: 0 40px;
|
|
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
& ::v-deep .el-input__inner {
|
|
border-radius: 20px;
|
|
border: 1px solid transparent;
|
|
background: $colorBg;
|
|
}
|
|
& :focus {
|
|
border: 1px solid $--color-primary;
|
|
}
|
|
}
|
|
|
|
.login-btn {
|
|
margin-top: 22px;
|
|
padding: 0 40px;
|
|
@media only screen and (max-width: 1280px) {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.submit {
|
|
width: 100%;
|
|
border-radius: 20px;
|
|
}
|
|
}
|
|
|
|
.login-msg {
|
|
margin-top: 10px;
|
|
padding: 0 40px;
|
|
color: $--color-danger;
|
|
text-align: center;
|
|
}
|
|
|
|
.login-image {
|
|
background: url(../../assets/login-desc.png) no-repeat;
|
|
background-size: cover;
|
|
width: 100%;
|
|
height: 520px;
|
|
@media only screen and (max-width: 1280px) {
|
|
height: 380px;
|
|
}
|
|
}
|
|
.login-image-de {
|
|
background-size: cover;
|
|
width: 100%;
|
|
height: 520px;
|
|
@media only screen and (max-width: 1280px) {
|
|
height: 380px;
|
|
}
|
|
}
|
|
}
|
|
.dynamic-login-foot {
|
|
visibility: visible;
|
|
width: 100%;
|
|
position: fixed;
|
|
z-index: 302;
|
|
bottom: 0;
|
|
left: 0;
|
|
height: auto;
|
|
padding-top: 1px;
|
|
zoom: 1;
|
|
margin: 0;
|
|
}
|
|
|
|
.trans {
|
|
position: absolute;
|
|
left: calc(50% - 64px);
|
|
top: 0;
|
|
width: 64px;
|
|
height: 64px;
|
|
background-image: url(../../assets/qrcode.png) ;
|
|
// background-color: var(--primary,#3370ff); //图标优化 -- 换为白色线条图标 背景层添加背景色
|
|
cursor:pointer;
|
|
}
|
|
.imgApp {
|
|
width: 64px;
|
|
height: 64px;
|
|
background: linear-gradient(225deg,transparent 45px, #fff 0);
|
|
}
|
|
.code{
|
|
width: 100%;
|
|
height: 100%; //将登录框挤出显示区域
|
|
text-align: center;
|
|
padding-top: 70px;
|
|
img {
|
|
width: 150px;
|
|
height: 150px;
|
|
padding: 10px;
|
|
}
|
|
.code-contaniner {
|
|
height: 410px;
|
|
}
|
|
}
|
|
.login-third-item {
|
|
display: inline-block;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50% 50%;
|
|
background: #ccc;
|
|
cursor: pointer;
|
|
margin: 0 10px;
|
|
}
|
|
.login-third-wecom {
|
|
background: url(../../assets/wecom.png) no-repeat 50%/cover;
|
|
}
|
|
.login-third-dingtalk {
|
|
background: url(../../assets/dingding01.png) no-repeat 50%/cover;
|
|
}
|
|
.login-third-fark {
|
|
background: url(../../assets/fark.png) no-repeat 50%/cover;
|
|
}
|
|
|
|
</style>
|