6
jinlin
2023-12-06 725f91bfd7d5339a66c5c17fbce05add50868667
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
<template>
  <el-dialog
    :visible.sync="visible"
    :title="$t('updatePassword.title')"
    :close-on-click-modal="false"
    :close-on-press-escape="false"
    :append-to-body="true">
    <el-form :model="dataForm" :rules="dataRule" ref="dataForm" label-width="120px">
      <el-form-item :label="$t('updatePassword.username')">
        <span>{{ $store.state.user.name }}</span>
      </el-form-item>
      <el-form-item prop="password" :label="$t('updatePassword.password')">
        <el-input v-model="dataForm.password" type="password" :placeholder="$t('updatePassword.password')"></el-input>
      </el-form-item>
      <el-form-item prop="newPassword" :label="$t('updatePassword.newPassword')">
        <el-input v-model="dataForm.newPassword" type="password" :placeholder="$t('updatePassword.newPassword')"></el-input>
      </el-form-item>
      <el-form-item prop="confirmPassword" :label="$t('updatePassword.confirmPassword')">
        <el-input v-model="dataForm.confirmPassword" type="password" :placeholder="$t('updatePassword.confirmPassword')"></el-input>
      </el-form-item>
    </el-form>
    <template slot="footer">
      <el-button @click="visible = false">{{ $t('cancel') }}</el-button>
      <el-button type="primary" @click="formSubmit()">{{ $t('confirm') }}</el-button>
    </template>
  </el-dialog>
</template>
 
<script>
  import debounce from 'lodash/debounce'
  import {clearLoginInfo} from '../../../packages/utils'
  export default {
    data() {
      return {
        visible: false,
        dataForm: {
          password: '',
          newPassword: '',
          confirmPassword: ''
        }
      }
    },
    computed: {
      dataRule() {
        var validateConfirmPassword = (rule, value, callback) => {
          if (this.dataForm.newPassword !== value) {
            return callback(new Error(this.$t('updatePassword.validate.confirmPassword')))
          }
          callback()
        }
        return {
          password: [
            {required: true, message: this.$t('validate.required'), trigger: 'blur'}
          ],
          newPassword: [
            {required: true, message: this.$t('validate.required'), trigger: 'blur'}
          ],
          confirmPassword: [
            {required: true, message: this.$t('validate.required'), trigger: 'blur'},
            {validator: validateConfirmPassword, trigger: 'blur'}
          ]
        }
      }
    },
    methods: {
      init() {
        this.visible = true
        this.$nextTick(() => {
          this.$refs.dataForm.resetFields()
        })
      },
      // 表单提交
      formSubmit: debounce(function () {
        this.$refs.dataForm.validate((valid) => {
          if (!valid) {
            return false
          }
          this.$http.put('/sys/user/password', this.dataForm).then(res => {
            if (res.code !== 0) {
              return this.$message.error(res.msg)
            }
            this.$message({
              message: this.$t('prompt.success'),
              type: 'success',
              duration: 500,
              onClose: () => {
                this.visible = false
                clearLoginInfo()
                this.$router.replace({name: 'login'})
              }
            })
          }).catch(() => {})
        })
      }, 1000, {'leading': true, 'trailing': false})
    }
  }
</script>