|
|
|
@ -1,13 +1,28 @@
|
|
|
|
|
<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-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-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-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>
|
|
|
|
@ -18,6 +33,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { updateUserPwd } from "@/api/system/user";
|
|
|
|
|
import {encrypt} from '@/utils/jsencrypt'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -32,37 +48,46 @@ export default {
|
|
|
|
|
user: {
|
|
|
|
|
oldPassword: undefined,
|
|
|
|
|
newPassword: undefined,
|
|
|
|
|
confirmPassword: undefined
|
|
|
|
|
confirmPassword: undefined,
|
|
|
|
|
},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
oldPassword: [
|
|
|
|
|
{ required: true, message: "旧密码不能为空", trigger: "blur" }
|
|
|
|
|
{ required: true, message: "旧密码不能为空", trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
newPassword: [
|
|
|
|
|
{ required: true, message: "新密码不能为空", trigger: "blur" },
|
|
|
|
|
{ min: 6, max: 20, message: "长度在 6 到 20 个字符", trigger: "blur" }
|
|
|
|
|
{
|
|
|
|
|
min: 6,
|
|
|
|
|
max: 20,
|
|
|
|
|
message: "长度在 6 到 20 个字符",
|
|
|
|
|
trigger: "blur",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
confirmPassword: [
|
|
|
|
|
{ required: true, message: "确认密码不能为空", trigger: "blur" },
|
|
|
|
|
{ required: true, validator: equalToPassword, trigger: "blur" }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
{ required: true, validator: equalToPassword, trigger: "blur" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
submit() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
updateUserPwd(this.user.oldPassword, this.user.newPassword).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
});
|
|
|
|
|
const oldPassword = encrypt(this.user.oldPassword);
|
|
|
|
|
const newPassword = encrypt(this.user.newPassword);
|
|
|
|
|
updateUserPwd(oldPassword, newPassword).then(
|
|
|
|
|
(response) => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
close() {
|
|
|
|
|
this.$tab.closePage();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|