PasswordModal.vue
4 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
<template>
<a-modal
:title="$t('system.resetPassword')"
:width="800"
:visible="visible"
:confirmLoading="confirmLoading"
@ok="handleSubmit"
@cancel="handleCancel"
:cancelText="$t('button.close')"
style="top:20px;"
>
<a-spin :spinning="confirmLoading">
<a-form :form="form">
<a-form-item :label="$t('system.userAccount')" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input :placeholder="$t('system.enterUserAccount')" v-decorator="[ 'username', {}]" :readOnly="true"/>
</a-form-item>
<a-form-item :label="$t('system.loginPassword')" :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
<a-input type="password" :placeholder="$t('system.enterLoginPassword')" v-decorator="[ 'password', validatorRules.password]"/>
</a-form-item>
<a-form-item :label="$t('system.confirmPassword')" :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
<a-input type="password" @blur="handleConfirmBlur" :placeholder="$t('system.pleaseProvideLoginPasswordAgain')"
v-decorator="[ 'confirmpassword', validatorRules.confirmpassword]"/>
</a-form-item>
</a-form>
</a-spin>
</a-modal>
</template>
<script>
import {changePassword} from '@/api/api'
import { translateResultMessage } from '@/api/api'
export default {
name: "PasswordModal",
data() {
return {
visible: false,
confirmLoading: false,
confirmDirty: false,
validatorRules: {
password: {
rules: [{
validator: this.validateToNextPassword,
}],
},
confirmpassword: {
rules: [{
required: true, message: this.$t('system.pleaseProvideLoginPasswordAgain'),
}, {
validator: this.compareToFirstPassword,
}],
},
},
model: {},
labelCol: {
xs: {span: 24},
sm: {span: 5},
},
wrapperCol: {
xs: {span: 24},
sm: {span: 16},
},
form: this.$form.createForm(this)
}
},
created() {
console.log("created");
},
methods: {
show(username) {
this.form.resetFields();
this.visible = true;
this.model.username = username;
this.$nextTick(() => {
this.form.setFieldsValue({username: username});
});
},
close() {
this.$emit('close');
this.visible = false;
this.disableSubmit = false;
this.selectedRole = [];
},
handleSubmit() {
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
this.confirmLoading = true;
let formData = Object.assign(this.model, values);
changePassword(formData).then((res) => {
if (res.success) {
this.$message.success(translateResultMessage(res, res.message))
this.$emit('ok');
} else {
this.$message.warning(translateResultMessage(res, res.message))
}
}).finally(() => {
this.confirmLoading = false;
this.close();
});
}
})
},
handleCancel() {
this.close()
},
validateToNextPassword(rule, value, callback) {
const form = this.form;
const confirmpassword = form.getFieldValue('confirmpassword');
console.log("confirmpassword==>", confirmpassword);
if (value && confirmpassword && value !== confirmpassword) {
callback(this.$t('system.thePasswordsEnteredDoNotMatch'));
}
if (value && this.confirmDirty) {
form.validateFields(['confirm'], {force: true})
}
callback();
},
compareToFirstPassword(rule, value, callback) {
const form = this.form;
if (value && value !== form.getFieldValue('password')) {
callback(this.$t('system.thePasswordsEnteredDoNotMatch'));
} else {
callback()
}
},
handleConfirmBlur(e) {
const value = e.target.value
this.confirmDirty = this.confirmDirty || !!value
}
}
}
</script>