Files
ruoyi-plus-vben5/apps/web-antd/src/views/system/user/user-reset-pwd-modal.vue

112 lines
2.4 KiB
Vue
Raw Normal View History

2024-09-26 09:50:10 +08:00
<script setup lang="ts">
import type { Recordable } from '@vben/types';
import { useVbenModal, z } from '@vben/common-ui';
import { useVbenForm } from '#/adapter';
import { userResetPassword } from '#/api/system/user';
import { Description, useDescription } from '#/components/description';
const emit = defineEmits<{ reload: [] }>();
const [BasicModal, modalApi] = useVbenModal({
onCancel: handleCancel,
onConfirm: handleSubmit,
onOpenChange: handleOpenChange,
});
const [registerDescription, { setDescProps }] = useDescription({
column: 1,
schema: [
{
field: 'userId',
label: '用户ID',
},
{
field: 'userName',
label: '用户名',
},
{
field: 'nickName',
label: '昵称',
},
],
});
const [BasicForm, formApi] = useVbenForm({
schema: [
{
component: 'Input',
dependencies: {
show: () => false,
triggerFields: [''],
},
fieldName: 'userId',
label: '用户ID',
rules: 'required',
},
{
2024-10-05 22:08:32 +08:00
component: 'InputPassword',
2024-09-26 09:50:10 +08:00
componentProps: {
placeholder: '请输入新的密码, 密码长度为5 - 20',
},
fieldName: 'password',
label: '新的密码',
rules: z
.string()
.min(5, { message: '密码长度为5 - 20' })
.max(20, { message: '密码长度为5 - 20' }),
},
],
2024-10-05 22:08:32 +08:00
showDefaultActions: false,
commonConfig: {
labelWidth: 80,
},
2024-09-26 09:50:10 +08:00
});
async function handleOpenChange(open: boolean) {
if (!open) {
return null;
}
const { record } = modalApi.getData() as { record: Recordable<any> };
setDescProps({ data: record }, true);
await formApi.setValues({ userId: record.userId });
}
async function handleSubmit() {
try {
modalApi.modalLoading(true);
const { valid } = await formApi.validate();
if (!valid) {
return;
}
2024-10-06 00:00:27 +08:00
const data = await formApi.getValues();
2024-09-26 09:50:10 +08:00
await userResetPassword(data as any);
emit('reload');
handleCancel();
} catch (error) {
console.error(error);
} finally {
modalApi.modalLoading(false);
}
}
async function handleCancel() {
modalApi.close();
await formApi.resetForm();
}
</script>
<template>
2024-10-05 22:08:32 +08:00
<BasicModal
:close-on-click-modal="false"
:fullscreen-button="false"
title="重置密码"
>
<div class="flex flex-col gap-[12px]">
<Description @register="registerDescription" />
<BasicForm />
</div>
2024-09-26 09:50:10 +08:00
</BasicModal>
</template>