SystemActivationModal.vue
6.63 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<template>
<div class="main">
<a-form-model class="user-layout-login" @keyup.enter.native="handleSubmit" :rules="validatorRules">
<a-tabs :activeKey="customActiveKey" :tabBarStyle="{ textAlign: 'center', borderBottom: 'unset' }" @change="handleTabClick">
<a-tab-pane key="tab1" tab="激活码授权">
<!-- <login-account ref="alogin" @validateFail="validateFail" @success="requestSuccess" @fail="requestFailed"></login-account> -->
</a-tab-pane>
<!-- <a-tab-pane key="tab2" tab="手机号登录">
<login-phone ref="plogin" @validateFail="validateFail" @success="requestSuccess" @fail="requestFailed"></login-phone>
</a-tab-pane> -->
</a-tabs>
<a-form-model-item>
<a-input size="large" v-model="model.activationCode" autocomplete="false" placeholder="请输入激活码"/>
</a-form-model-item>
<a-form-item style="margin-top:24px">
<a-button size="large" type="primary" htmlType="submit" class="login-button" :loading="loginBtn" @click.stop.prevent="handleSubmit" :disabled="loginBtn">确定
</a-button>
</a-form-item>
</a-form-model>
<two-step-captcha v-if="requiredTwoStepCaptcha" :visible="stepCaptchaVisible" @success="stepCaptchaSuccess" @cancel="stepCaptchaCancel"></two-step-captcha>
<!-- <login-select-tenant ref="loginSelect" @success="loginSelectOk"></login-select-tenant> -->
<!-- <third-login ref="thirdLogin"></third-login>-->
</div>
</template>
<script>
import Vue from 'vue'
import {ACCESS_TOKEN, ENCRYPTED_STRING} from '@/store/mutation-types'
import TwoStepCaptcha from '@/components/tools/TwoStepCaptcha'
import {getEncryptedString} from '@/utils/encryption/aesEncrypt'
import {timeFix} from '@/utils/util'
export default {
components: {
TwoStepCaptcha
},
data() {
return {
customActiveKey: 'tab1',
rememberMe: true,
loginBtn: false,
requiredTwoStepCaptcha: false,
stepCaptchaVisible: false,
querySource: {},
encryptedString: {
key: "",
iv: "",
},
model: {
activationCode: ''
},
validatorRules: {
activationCode: [{
required: true, message: '请输入激活码', validator: 'click'
}]
}
}
},
created() {
Vue.ls.remove(ACCESS_TOKEN)
this.getRouterData();
this.rememberMe = true
},
methods: {
handleTabClick(key) {
this.customActiveKey = key
},
handleRememberMeChange(e) {
this.rememberMe = e.target.checked
},
/**跳转到登录页面的参数-账号获取*/
getRouterData() {
this.$nextTick(() => {
let temp = this.$route.params.username || this.$route.query.username || ''
if (temp) {
this.$refs.alogin.acceptUsername(temp)
}
})
},
// 验证字段
validateFields(arr, callback) {
let promiseArray = []
for (let item of arr) {
let p = new Promise((resolve, reject) => {
this.$refs['form'].validateField(item, (err) => {
if (!err) {
resolve();
} else {
reject(err);
}
})
});
promiseArray.push(p)
}
Promise.all(promiseArray).then(() => {
callback()
}).catch(err => {
callback(err)
})
},
//登录
handleSubmit() {
this.loginBtn = true;
console.log('handleSubmit start')
this.handleSystemActivation(this.rememberMe)
},
// 校验失败
validateFail() {
this.loginBtn = false;
},
// 登录后台成功
requestSuccess(loginResult) {
this.$refs.loginSelect.show(loginResult)
},
//登录后台失败
requestFailed(err) {
let description = ((err.response || {}).data || {}).message || err.message || "请求出现错误,请稍后再试"
this.$notification['error']({
message: '登录失败',
description: description,
duration: 4,
});
//账户密码登录错误后更新验证码
if (this.customActiveKey === 'tab1' && description.indexOf('密码错误') > 0) {
this.$refs.alogin.handleChangeCheckCode()
}
this.loginBtn = false;
},
loginSelectOk() {
this.loginSuccess()
},
//登录成功
loginSuccess() {
this.$router.push({path: "/dashboard/analysis"});
this.$notification.success({
message: '欢迎',
description: `${timeFix()},欢迎回来`,
});
},
systemActivationSuccess() {
this.$router.push({path: "/user/login"});
this.$notification.success({
message: '激活成功,请重新登录',
// description: `${timeFix()},欢迎回来`,
});
},
systemActivationSuccessError() {
this.$notification.error({
message: '激活失败,请重新输入',
// description: `${timeFix()},欢迎回来`,
});
this.loginBtn = false;
},
stepCaptchaSuccess() {
this.loginSuccess()
},
stepCaptchaCancel() {
this.Logout().then(() => {
this.loginBtn = false
this.stepCaptchaVisible = false
})
},
//获取密码加密规则
getEncrypte() {
var encryptedString = Vue.ls.get(ENCRYPTED_STRING);
if (encryptedString == null) {
getEncryptedString().then((data) => {
this.encryptedString = data
});
} else {
this.encryptedString = encryptedString;
}
},
handleSystemActivation(rememberMe) {
console.log('handleLogin start')
let loginParams = {
activationCode: this.model.activationCode,
}
// this.systemActivationSuccess();
this.systemActivationSuccessError();
// this.loginSelectOk();
// this.Login(loginParams).then((res) => {
// this.$emit('success', res.result)
// }).catch((err) => {
// this.$emit('fail', err)
// });
}
}
}
</script>
<style lang="less" scoped>
.user-layout-login {
label {
font-size: 14px;
}
.getCaptcha {
display: block;
width: 100%;
height: 40px;
}
.forge-password {
font-size: 14px;
}
button.login-button {
padding: 0 15px;
font-size: 16px;
height: 40px;
width: 100%;
}
.user-login-other {
text-align: left;
margin-top: 24px;
line-height: 22px;
.item-icon {
font-size: 24px;
color: rgba(0, 0, 0, .2);
margin-left: 16px;
vertical-align: middle;
cursor: pointer;
transition: color .3s;
&:hover {
color: #1890ff;
}
}
.register {
float: right;
}
}
.valid-error .ant-select-selection__placeholder {
color: #f5222d;
}
}
</style>