2023-04-03 00:26:04 +08:00
|
|
|
<template>
|
|
|
|
<el-form ref="pwdRef" :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" @click="submit">保存</el-button>
|
|
|
|
<el-button type="danger" @click="close">关闭</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</template>
|
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
<script setup lang="ts">
|
2023-06-06 22:23:43 +08:00
|
|
|
import { updateUserPwd } from "@/api/system/user";
|
|
|
|
import type { ResetPwdForm } from "@/api/system/user/types";
|
2023-04-02 01:01:56 +08:00
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
2023-06-06 22:23:43 +08:00
|
|
|
const pwdRef = ref<ElFormInstance>();
|
2023-04-02 01:01:56 +08:00
|
|
|
const user = ref<ResetPwdForm>({
|
2023-06-06 22:23:43 +08:00
|
|
|
oldPassword: "",
|
|
|
|
newPassword: "",
|
|
|
|
confirmPassword: ""
|
2023-03-15 15:59:21 +08:00
|
|
|
});
|
|
|
|
|
2023-04-02 01:01:56 +08:00
|
|
|
const equalToPassword = (rule: any, value: string, callback: any) => {
|
2023-06-06 22:23:43 +08:00
|
|
|
if (user.value.newPassword !== value) {
|
|
|
|
callback(new Error("两次输入的密码不一致"));
|
|
|
|
} else {
|
|
|
|
callback();
|
|
|
|
}
|
2023-03-15 15:59:21 +08:00
|
|
|
};
|
|
|
|
const rules = ref({
|
2023-06-06 22:23:43 +08:00
|
|
|
oldPassword: [{ required: true, message: "旧密码不能为空", trigger: "blur" }],
|
|
|
|
newPassword: [{ required: true, message: "新密码不能为空", trigger: "blur" }, {
|
|
|
|
min: 6,
|
|
|
|
max: 20,
|
|
|
|
message: "长度在 6 到 20 个字符",
|
|
|
|
trigger: "blur"
|
|
|
|
}],
|
|
|
|
confirmPassword: [{ required: true, message: "确认密码不能为空", trigger: "blur" }, {
|
|
|
|
required: true,
|
|
|
|
validator: equalToPassword,
|
|
|
|
trigger: "blur"
|
|
|
|
}]
|
2023-03-15 15:59:21 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const submit = () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
pwdRef.value?.validate(async (valid: boolean) => {
|
|
|
|
if (valid) {
|
|
|
|
await updateUserPwd(user.value.oldPassword, user.value.newPassword);
|
|
|
|
proxy?.$modal.msgSuccess("修改成功");
|
|
|
|
}
|
|
|
|
});
|
2023-03-15 15:59:21 +08:00
|
|
|
};
|
|
|
|
/** 关闭按钮 */
|
2023-04-02 01:01:56 +08:00
|
|
|
const close = () => {
|
2023-06-06 22:23:43 +08:00
|
|
|
proxy?.$tab.closePage();
|
2023-03-15 15:59:21 +08:00
|
|
|
};
|
|
|
|
</script>
|