|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, unref } from 'vue'
|
|
|
|
import { formSchema } from './template.data'
|
|
|
|
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 { createNotifyTemplate, getNotifyTemplate, updateNotifyTemplate } from '@/api/system/notify/template'
|
|
|
|
|
|
|
|
defineOptions({ name: 'NotifyTemplateModal' })
|
|
|
|
|
|
|
|
const emit = defineEmits(['success', 'register'])
|
|
|
|
const { t } = useI18n()
|
|
|
|
const { createMessage } = useMessage()
|
|
|
|
const isUpdate = ref(true)
|
|
|
|
|
|
|
|
const [registerForm, { setFieldsValue, resetFields, validate }] = useForm({
|
|
|
|
labelWidth: 120,
|
|
|
|
baseColProps: { span: 24 },
|
|
|
|
schemas: formSchema,
|
|
|
|
showActionButtonGroup: false,
|
|
|
|
actionColOptions: { span: 23 },
|
|
|
|
})
|
|
|
|
|
|
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
|
|
|
resetFields()
|
|
|
|
setModalProps({ confirmLoading: false })
|
|
|
|
isUpdate.value = !!data?.isUpdate
|
|
|
|
if (unref(isUpdate)) {
|
|
|
|
const res = await getNotifyTemplate(data.record.id)
|
|
|
|
setFieldsValue({ ...res })
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
async function handleSubmit() {
|
|
|
|
try {
|
|
|
|
const values = await validate()
|
|
|
|
setModalProps({ confirmLoading: true })
|
|
|
|
if (unref(isUpdate))
|
|
|
|
await updateNotifyTemplate(values)
|
|
|
|
else
|
|
|
|
await createNotifyTemplate(values)
|
|
|
|
|
|
|
|
closeModal()
|
|
|
|
emit('success')
|
|
|
|
createMessage.success(t('common.saveSuccessText'))
|
|
|
|
}
|
|
|
|
finally {
|
|
|
|
setModalProps({ confirmLoading: false })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<BasicModal v-bind="$attrs" :title="isUpdate ? t('action.edit') : t('action.create')" @register="registerModal" @ok="handleSubmit">
|
|
|
|
<BasicForm @register="registerForm" />
|
|
|
|
</BasicModal>
|
|
|
|
</template>
|