You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.9 KiB
89 lines
2.9 KiB
|
3 months ago
|
<template>
|
||
|
|
<el-form ref="form" :model="user" :rules="rules" label-width="80px">
|
||
|
|
<el-form-item label="旧密码" prop="oldPassword">
|
||
|
|
<el-input v-model="user.oldPassword" placeholder="请输入旧密码" type="password" show-password />
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="新密码" prop="newPassword">
|
||
|
|
<el-input v-model="user.newPassword" placeholder="请输入新密码" type="password" show-password />
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="确认密码" prop="confirmPassword">
|
||
|
|
<el-input v-model="user.confirmPassword" placeholder="请确认密码" type="password" show-password />
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item>
|
||
|
|
<el-button type="primary" size="mini" @click="submit">保存</el-button>
|
||
|
|
<el-button type="danger" size="mini" @click="close">关闭</el-button>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import { updateUserPwd } from '@/api/school/system/user'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
const validatePass = (rule, value, callback) => {
|
||
|
|
const pattern = /^.*(?=.{6,16})(?=.*\d)(?=.*[A-Z]{1,})(?=.*[a-z]{1,})(?=.*[!@#$%^&*?\(\)]).*$/
|
||
|
|
if (value === undefined || value === '') {
|
||
|
|
callback(new Error('请输入密码'))
|
||
|
|
} else if (!pattern.test(value)) {
|
||
|
|
callback(new Error('最少6位,包含大小写字母和特殊字符'))
|
||
|
|
} else {
|
||
|
|
if (this.user.confirmPassword !== '' && this.user.confirmPassword !== undefined) {
|
||
|
|
this.$refs.form.validateField('confirmPassword')
|
||
|
|
}
|
||
|
|
callback()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
const validateCheckPass = (rule, value, callback) => {
|
||
|
|
if (value === undefined || value === '') {
|
||
|
|
callback(new Error('请再次输入密码'))
|
||
|
|
} else if (value !== this.user.newPassword) {
|
||
|
|
callback(new Error('两次输入密码不一致!'))
|
||
|
|
} else {
|
||
|
|
callback()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return {
|
||
|
|
user: {
|
||
|
|
oldPassword: undefined,
|
||
|
|
newPassword: undefined,
|
||
|
|
confirmPassword: undefined
|
||
|
|
},
|
||
|
|
// 表单校验
|
||
|
|
rules: {
|
||
|
|
oldPassword: [
|
||
|
|
{ required: true, message: '旧密码不能为空', trigger: 'blur' }
|
||
|
|
],
|
||
|
|
newPassword: [
|
||
|
|
{ validator: validatePass, trigger: 'blur' }
|
||
|
|
],
|
||
|
|
confirmPassword: [
|
||
|
|
{ validator: validateCheckPass, trigger: 'blur' }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
submit() {
|
||
|
|
this.$refs['form'].validate(valid => {
|
||
|
|
if (valid) {
|
||
|
|
updateUserPwd(this.user).then(
|
||
|
|
response => {
|
||
|
|
if (response.respCode === '0000') {
|
||
|
|
this.msgSuccess('修改成功,请牢记您的新密码:' + this.user.newPassword)
|
||
|
|
} else {
|
||
|
|
this.msgError(response.respMsg)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
)
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
close() {
|
||
|
|
this.$store.dispatch('tagsView/delView', this.$route)
|
||
|
|
this.$router.push({ path: '/' })
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|