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.
47 lines
1.4 KiB
47 lines
1.4 KiB
<template> |
|
<BasicModal v-bind="$attrs" @register="registerModal" title="重置密码" @ok="handleSubmit"> |
|
<BasicForm @register="registerForm" /> |
|
</BasicModal> |
|
</template> |
|
<script lang="ts" setup name="SystemResetPwdModal"> |
|
import { ref } from 'vue' |
|
import { useI18n } from '@/hooks/web/useI18n' |
|
import { useMessage } from '@/hooks/web/useMessage' |
|
import { BasicForm, useForm } from '@/components/Form' |
|
import { BasicModal, useModalInner } from '@/components/Modal' |
|
import { userPwdFormSchema } from './user.data' |
|
import { resetUserPwd } from '@/api/system/user' |
|
|
|
const { t } = useI18n() |
|
const { createMessage } = useMessage() |
|
const emit = defineEmits(['success', 'register']) |
|
|
|
const userId = ref(0) |
|
|
|
const [registerForm, { resetFields, validate }] = useForm({ |
|
labelWidth: 120, |
|
baseColProps: { span: 24 }, |
|
schemas: userPwdFormSchema, |
|
showActionButtonGroup: false, |
|
actionColOptions: { span: 23 } |
|
}) |
|
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner((data) => { |
|
resetFields() |
|
userId.value = data.record.id |
|
setModalProps({ confirmLoading: false }) |
|
}) |
|
|
|
async function handleSubmit() { |
|
try { |
|
const values = await validate() |
|
await resetUserPwd(userId.value, values.newPassword) |
|
setModalProps({ confirmLoading: true }) |
|
closeModal() |
|
emit('success') |
|
} finally { |
|
createMessage.success(t('common.saveSuccessText')) |
|
setModalProps({ confirmLoading: false }) |
|
} |
|
} |
|
</script>
|
|
|