<template>
|
<el-form
|
ref="loginForm"
|
:rules="loginRules"
|
:model="loginForm"
|
class="login-form"
|
status-icon
|
label-width="0"
|
>
|
<el-form-item prop="username">
|
<el-input
|
v-model="loginForm.username"
|
size="small"
|
auto-complete="off"
|
placeholder="请输入用户名"
|
@keyup.enter.native="handleLogin"
|
>
|
<i slot="prefix" class="icon-yonghu" />
|
</el-input>
|
</el-form-item>
|
<el-form-item prop="password">
|
<el-input
|
:type="passwordType"
|
v-model="loginForm.password"
|
size="small"
|
auto-complete="off"
|
placeholder="请输入密码"
|
@keyup.enter.native="handleLogin"
|
>
|
<i
|
slot="suffix"
|
class="el-icon-view el-input__icon"
|
@click="showPassword"
|
/>
|
<i slot="prefix" class="iconfont icon-mima"></i>
|
</el-input>
|
</el-form-item>
|
<el-form-item>
|
<el-button
|
type="primary"
|
size="small"
|
class="login-submit"
|
@click.native.prevent="handleLogin"
|
>登录
|
</el-button>
|
</el-form-item>
|
<el-button v-if="false" type="primary" plain @click="goLogin"
|
>集团集成登录</el-button
|
>
|
</el-form>
|
</template>
|
|
<script>
|
import { randomLenNum } from '@/util/util'
|
import { mapGetters } from 'vuex'
|
import { getCode } from '@/api/code'
|
import Verify from '@/components/verifition/Verify'
|
import { getSsoAuthUrl } from '@/api/login'
|
|
export default {
|
name: 'Userlogin',
|
components: {
|
Verify
|
},
|
data() {
|
return {
|
socialForm: {
|
code: '',
|
state: ''
|
},
|
loginForm: {
|
username: '',
|
password: '',
|
code: '',
|
randomStr: 'blockPuzzle'
|
},
|
checked: false,
|
code: {
|
src: undefined,
|
len: 4
|
},
|
loginRules: {
|
username: [
|
{ required: true, message: '请输入用户名', trigger: 'blur' }
|
],
|
password: [
|
{ required: true, message: '请输入密码', trigger: 'blur' },
|
{ min: 6, message: '密码长度最少为6位', trigger: 'blur' }
|
]
|
},
|
passwordType: 'password',
|
SSO: window.location.hash
|
}
|
},
|
created() {
|
this.initLogin()
|
},
|
computed: {
|
...mapGetters(['tagWel'])
|
},
|
methods: {
|
async goLogin() {
|
const {
|
data: { data }
|
} = await getSsoAuthUrl()
|
window.location.href = data
|
// this.$router.push({ path: '/thirdpartylogin' })
|
},
|
showPassword() {
|
this.passwordType == ''
|
? (this.passwordType = 'password')
|
: (this.passwordType = '')
|
},
|
handleLogin() {
|
this.$refs.loginForm.validate((valid) => {
|
if (valid) {
|
this.$store.dispatch('LoginByUsername', this.loginForm).then(() => {
|
this.$router.push({ path: this.tagWel.value })
|
})
|
}
|
})
|
},
|
initLogin() {
|
const accessToken = this.SSO.split('&')[0].split('=')[1]
|
if (accessToken) {
|
this.$store.dispatch('LoginBySSO', accessToken).then(() => {
|
this.$router.push({ path: this.tagWel.value })
|
})
|
}
|
}
|
}
|
}
|
</script>
|
|
<style></style>
|