Blame view

ant-design-vue-jeecg/src/components/tools/UserPassword.vue 4.25 KB
1
oldPassword<template>
肖超群 authored
2
3
4
5
6
7
8
  <a-modal
    :title="title"
    :width="modalWidth"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
9
    :cancelText="$t('button.close')"
肖超群 authored
10
11
12
  >
    <a-spin :spinning="confirmLoading">
      <a-form :form="form">
13
14
15
16
17
18
        <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('system.oldPassword')">
          <a-input
            type="password"
            :placeholder="$t('system.inputOldPassword')"
            v-decorator="['oldpassword', validatorRules.oldpassword]"
          />
肖超群 authored
19
20
        </a-form-item>
21
22
23
24
25
26
        <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('system.newPassword')">
          <a-input
            type="password"
            :placeholder="$t('system.inputNewPassword')"
            v-decorator="['password', validatorRules.password]"
          />
肖超群 authored
27
28
        </a-form-item>
29
30
31
32
33
34
35
        <a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" :label="$t('system.confirmNewPassword')">
          <a-input
            type="password"
            @blur="handleConfirmBlur"
            :placeholder="$t('system.inputConfirmNewPassword')"
            v-decorator="['confirmpassword', validatorRules.confirmpassword]"
          />
肖超群 authored
36
37
38
39
40
41
42
        </a-form-item>
      </a-form>
    </a-spin>
  </a-modal>
</template>

<script>
43
import { putAction } from '@/api/manage'
肖超群 authored
44
肖超群 authored
45
export default {
46
  name: 'UserPassword',
肖超群 authored
47
48
  data() {
    return {
49
50
      title: this.$t('system.passwordChange'),
      modalWidth: 840,
肖超群 authored
51
52
53
54
      visible: false,
      confirmLoading: false,
      validatorRules: {
        oldpassword: {
55
56
57
58
59
60
          rules: [
            {
              required: true,
              message: this.$t('system.inputOldPassword')
            }
          ]
肖超群 authored
61
        },
肖超群 authored
62
        password: {
63
64
65
66
67
68
69
70
71
          rules: [
            {
              required: true,
              message: this.$t('system.inputNewPassword')
            },
            {
              validator: this.validateToNextPassword
            }
          ]
肖超群 authored
72
        },
肖超群 authored
73
        confirmpassword: {
74
75
76
77
78
79
80
81
82
          rules: [
            {
              required: true,
              message: this.$t('system.inputConfirmNewPassword')
            },
            {
              validator: this.compareToFirstPassword
            }
          ]
肖超群 authored
83
84
        }
      },
肖超群 authored
85
86
      confirmDirty: false,
      labelCol: {
87
88
        xs: { span: 24 },
        sm: { span: 5 }
肖超群 authored
89
      },
肖超群 authored
90
      wrapperCol: {
91
92
        xs: { span: 24 },
        sm: { span: 16 }
肖超群 authored
93
      },
肖超群 authored
94
95

      form: this.$form.createForm(this),
96
97
      url: 'sys/user/updatePassword',
      username: ''
肖超群 authored
98
99
100
101
102
    }
  },
  methods: {
    show(uname) {
      if (!uname) {
103
        this.$message.warning('当前系统无登录用户!')
肖超群 authored
104
105
106
        return
      } else {
        this.username = uname
107
108
        this.form.resetFields()
        this.visible = true
肖超群 authored
109
110
111
112
113
114
      }
    },
    handleCancel() {
      this.close()
    },
    close() {
115
116
117
118
      this.$emit('close')
      this.visible = false
      this.disableSubmit = false
      this.selectedRole = []
肖超群 authored
119
120
    },
    handleOk() {
121
      const that = this
肖超群 authored
122
123
124
      // 触发表单验证
      this.form.validateFields((err, values) => {
        if (!err) {
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
          that.confirmLoading = true
          let params = Object.assign({ username: this.username }, values)
          putAction(this.url, params)
            .then(res => {
              if (res.success) {
                console.log(res)
                that.$message.success(res.message)
                that.close()
              } else {
                that.$message.warning(res.message)
              }
            })
            .finally(() => {
              that.confirmLoading = false
            })
肖超群 authored
140
        }
肖超群 authored
141
142
143
      })
    },
    validateToNextPassword(rule, value, callback) {
144
      const form = this.form
肖超群 authored
145
      if (value && this.confirmDirty) {
146
        form.validateFields(['confirm'], { force: true })
肖超群 authored
147
      }
148
      callback()
肖超群 authored
149
150
    },
    compareToFirstPassword(rule, value, callback) {
151
      const form = this.form
肖超群 authored
152
      if (value && value !== form.getFieldValue('password')) {
153
        callback(this.$t('system.passwordsDoNotMatch'))
肖超群 authored
154
155
156
157
158
159
160
      } else {
        callback()
      }
    },
    handleConfirmBlur(e) {
      const value = e.target.value
      this.confirmDirty = this.confirmDirty || !!value
肖超群 authored
161
162
    }
  }
肖超群 authored
163
}
肖超群 authored
164
165
166
167
</script>

<style scoped>
</style>