mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 07:57:18 +08:00
155 lines
3.7 KiB
Vue
155 lines
3.7 KiB
Vue
<script setup lang="ts">
|
|
import { ref, reactive } from "vue";
|
|
import Motion from "../utils/motion";
|
|
import { message } from "@/utils/message";
|
|
import { updateRules } from "../utils/rule";
|
|
import type { FormInstance } from "element-plus";
|
|
import { useVerifyCode } from "../utils/verifyCode";
|
|
import { useRenderIcon } from "@/components/ReIcon/src/hooks";
|
|
import Lock from "@iconify-icons/ri/lock-fill";
|
|
import Iphone from "@iconify-icons/ep/iphone";
|
|
|
|
defineProps({
|
|
currentPage: {
|
|
type: Number,
|
|
default: 4
|
|
}
|
|
});
|
|
|
|
const $pageEmit = defineEmits(["update:currentPage"]);
|
|
|
|
const loading = ref(false);
|
|
const ruleForm = reactive({
|
|
phone: "",
|
|
verifyCode: "",
|
|
password: "",
|
|
repeatPassword: ""
|
|
});
|
|
const ruleFormRef = ref<FormInstance>();
|
|
const { isDisabled, text } = useVerifyCode();
|
|
const repeatPasswordRule = [
|
|
{
|
|
validator: (rule, value, callback) => {
|
|
if (value === "") {
|
|
callback(new Error("请输入确认密码"));
|
|
} else if (ruleForm.password !== value) {
|
|
callback(new Error("两次密码不一致"));
|
|
} else {
|
|
callback();
|
|
}
|
|
},
|
|
trigger: "blur"
|
|
}
|
|
];
|
|
|
|
const onUpdate = async (formEl: FormInstance | undefined) => {
|
|
loading.value = true;
|
|
if (!formEl) return;
|
|
await formEl.validate((valid, fields) => {
|
|
if (valid) {
|
|
// 模拟请求,需根据实际开发进行修改
|
|
setTimeout(() => {
|
|
message("修改密码成功", {
|
|
type: "success"
|
|
});
|
|
loading.value = false;
|
|
}, 2000);
|
|
} else {
|
|
loading.value = false;
|
|
return fields;
|
|
}
|
|
});
|
|
};
|
|
|
|
function onBack() {
|
|
useVerifyCode().end();
|
|
$pageEmit("update:currentPage", 0);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<el-form
|
|
ref="ruleFormRef"
|
|
:model="ruleForm"
|
|
:rules="updateRules"
|
|
size="large"
|
|
>
|
|
<Motion>
|
|
<el-form-item prop="phone">
|
|
<el-input
|
|
clearable
|
|
v-model="ruleForm.phone"
|
|
placeholder="手机号码"
|
|
:prefix-icon="useRenderIcon(Iphone)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="100">
|
|
<el-form-item prop="verifyCode">
|
|
<div class="flex justify-between w-full">
|
|
<el-input
|
|
clearable
|
|
v-model="ruleForm.verifyCode"
|
|
placeholder="短信验证码"
|
|
:prefix-icon="useRenderIcon('ri:shield-keyhole-line')"
|
|
/>
|
|
<el-button
|
|
:disabled="isDisabled"
|
|
class="ml-2"
|
|
@click="useVerifyCode().start(ruleFormRef, 'phone')"
|
|
>
|
|
{{ text.length > 0 ? text + "秒后重新获取" : "获取验证码" }}
|
|
</el-button>
|
|
</div>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="150">
|
|
<el-form-item prop="password">
|
|
<el-input
|
|
clearable
|
|
show-password
|
|
v-model="ruleForm.password"
|
|
placeholder="密码"
|
|
:prefix-icon="useRenderIcon(Lock)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="200">
|
|
<el-form-item :rules="repeatPasswordRule" prop="repeatPassword">
|
|
<el-input
|
|
clearable
|
|
show-password
|
|
v-model="ruleForm.repeatPassword"
|
|
placeholder="确认密码"
|
|
:prefix-icon="useRenderIcon(Lock)"
|
|
/>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="250">
|
|
<el-form-item>
|
|
<el-button
|
|
class="w-full"
|
|
size="default"
|
|
type="primary"
|
|
:loading="loading"
|
|
@click="onUpdate(ruleFormRef)"
|
|
>
|
|
确定
|
|
</el-button>
|
|
</el-form-item>
|
|
</Motion>
|
|
|
|
<Motion :delay="300">
|
|
<el-form-item>
|
|
<el-button class="w-full" size="default" @click="onBack">
|
|
返回
|
|
</el-button>
|
|
</el-form-item>
|
|
</Motion>
|
|
</el-form>
|
|
</template>
|