PasswordModal.vue 4 KB
<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>