index copy.vue
4.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<template>
<div class="login-container">
<div class="login-version">
<p class="login-version-text">{{$t('login.version')}}{{define.version}}</p>
</div>
<div class="login-content">
<div class="login-form">
<img class="login-logo" src="../../assets/images/login_logo.png" alt="">
<div class="login-tab" :class="'active'+active">
<a class="item" :class="{'active': active==1}" @click="active=1">{{$t('login.title')}}</a>
<a class="item" :class="{'active': active==2}"
@click="active=2">{{$t('login.scanTitle')}}</a>
</div>
<el-form v-show="active==1" ref="loginForm" :model="loginForm" :rules="loginRules"
autocomplete="on" label-position="left">
<el-form-item prop="account">
<el-input ref="account" v-model="loginForm.account" :placeholder="$t('login.username')"
name="account" type="text" tabindex="1" autocomplete="on" prefix-icon="el-icon-user"
size="large"></el-input>
</el-form-item>
<el-form-item class="rule-tip">{{$t('login.rule')}}</el-form-item>
<el-tooltip v-model="capsTooltip" :content="$t('login.upper')" placement="right" manual>
<el-form-item prop="password">
<el-input ref="password" v-model="loginForm.password" show-password
:placeholder="$t('login.password')" name="password" tabindex="2" autocomplete="on"
@keyup.native="checkCapslock" @blur="capsTooltip = false" prefix-icon="el-icon-lock"
size="large"></el-input>
<!-- @keyup.enter.native="handleLogin" -->
</el-form-item>
</el-tooltip>
<el-button :loading="loading" type="primary" class="login-btn" size="large"
@click.native.prevent="handleLogin">{{ $t('login.logIn') }}</el-button>
</el-form>
<div v-show="active==2" class="login-form-QRCode">
<img class="qrcode-img" src="../../assets/images/login_qr.png">
<p class="qrcode-tip">{{ $t('login.scanTip') }}</p>
</div>
</div>
</div>
<!-- <div class="login-foot">Copyright 公司, All Rights Reserved. 沪ICP备17044791号-1
助力企业和团队快速实现目标</div> -->
</div>
</template>
<script>
export default {
name: 'Login',
data() {
return {
loginForm: {
account: '',
password: ''
},
loginRules: {
account: [
{ required: true, trigger: 'blur', message: this.$t('login.accountTip') }
],
password: [
{ required: true, trigger: 'blur', message: this.$t('login.passwordTip') }
]
},
capsTooltip: false,
loading: false,
showDialog: false,
redirect: undefined,
otherQuery: {},
active: 1
}
},
computed: {
loginLoading() {
return this.$store.state.user.loginLoading
}
},
watch: {
loginLoading(val) {
if (!val) this.loading = false
},
$route: {
handler: function (route) {
const query = route.query
if (query) {
this.redirect = query.redirect
this.otherQuery = this.getOtherQuery(query)
}
},
immediate: true
}
},
created() {
const _this = this
document.onkeydown = function (e) {
const { keyCode } = e
if (keyCode === 13) {
_this.handleLogin()
}
}
},
mounted() {
this.$store.commit('user/SET_LOGIN_LOADING', false)
},
destroyed() {
document.onkeydown = function (e) {
const { keyCode } = e
if (keyCode === 13) { }
}
},
methods: {
checkCapslock(e) {
const { key } = e
this.capsTooltip = key && key.length === 1 && key >= 'A' && key <= 'Z'
},
handleLogin() {
if (this.loading) return
this.$refs.loginForm.validate(valid => {
if (valid) {
this.loading = true
this.$store.commit('user/SET_LOGIN_LOADING', true)
this.$store
.dispatch('user/login', this.loginForm)
.then(() => {
this.$router.push({
path: this.redirect || '/home',
query: this.otherQuery
})
})
.catch(() => {
this.$store.commit('user/SET_LOGIN_LOADING', false)
})
} else {
return false
}
})
},
getOtherQuery(query) {
return Object.keys(query).reduce((acc, cur) => {
if (cur !== 'redirect') {
acc[cur] = query[cur]
}
return acc
}, {})
}
}
}
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>