UserPassword.vue
4.17 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
<template>
  <a-modal
    :title="title"
    :width="modalWidth"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    :cancelText="$t('button.close')"
  >
    <a-spin :spinning="confirmLoading">
      <a-form :form="form">
        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          :label="$t('system.oldPassword')">
          <a-input type="password" :placeholder="$t('system.inputOldPassword')" v-decorator="[ 'oldpassword', validatorRules.oldpassword]"/>
        </a-form-item>
        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          :label="$t('system.newPassword')">
          <a-input type="password" :placeholder="$t('system.inputNewPassword')" v-decorator="[ 'password', validatorRules.password]"/>
        </a-form-item>
        <a-form-item
          :labelCol="labelCol"
          :wrapperCol="wrapperCol"
          :label="$t('system.confirmNewPassword')">
          <a-input type="password" @blur="handleConfirmBlur" :placeholder="$t('system.confirmNewPassword')"
                   v-decorator="[ 'confirmpassword', validatorRules.confirmpassword]"/>
        </a-form-item>
      </a-form>
    </a-spin>
  </a-modal>
</template>
<script>
import {putAction} from '@/api/manage'
import { translateResultMessage } from '@/api/api'
export default {
  name: "UserPassword",
  data() {
    return {
      title: this.$t('system.passwordChange'),
      modalWidth: 850,
      visible: false,
      confirmLoading: false,
      validatorRules: {
        oldpassword: {
          rules: [{
            required: true, message: this.$t('system.inputOldPassword'),
          }],
        },
        password: {
          rules: [{
            required: true, message: this.$t('system.inputNewPassword'),
          }, {
            validator: this.validateToNextPassword,
          }],
        },
        confirmpassword: {
          rules: [{
            required: true, message: this.$t('system.inputConfirmNewPassword'),
          }, {
            validator: this.compareToFirstPassword,
          }],
        }
      },
      confirmDirty: false,
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16},
      },
      form: this.$form.createForm(this),
      url: "sys/user/updatePassword",
      username: "",
    }
  },
  methods: {
    show(uname) {
      if (!uname) {
        this.$message.warning(this.$t('system.noLoggedInUser'));
      } else {
        this.username = uname
        this.form.resetFields();
        this.visible = true;
      }
    },
    handleCancel() {
      this.close()
    },
    close() {
      this.$emit('close');
      this.visible = false;
      this.disableSubmit = false;
      this.selectedRole = [];
    },
    handleOk() {
      const that = this;
      // 触发表单验证
      this.form.validateFields((err, values) => {
        if (!err) {
          that.confirmLoading = true;
          let params = Object.assign({username: this.username}, values)
          console.log("修改密码提交数据", params)
          putAction(this.url, params).then((res) => {
            if (res.success) {
              console.log(res)
              that.$message.success(translateResultMessage(res, res.message))
              that.close();
            } else {
              that.$message.warning(translateResultMessage(res, res.message))
            }
          }).finally(() => {
            that.confirmLoading = false;
          })
        }
      })
    },
    validateToNextPassword(rule, value, callback) {
      const form = this.form;
      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>
<style scoped>
</style>