153 lines
3.4 KiB
Vue
153 lines
3.4 KiB
Vue
<template>
|
|
<basicModal
|
|
@register="modalRegister"
|
|
ref="modalRef"
|
|
class="basicModal basicFormModal"
|
|
@on-ok="handleSubmit"
|
|
@on-close="handleClose"
|
|
>
|
|
<template #default>
|
|
<n-form
|
|
class="ls-form"
|
|
ref="formRef"
|
|
:model="formData"
|
|
label-placement="left"
|
|
label-width="80px"
|
|
>
|
|
<n-form-item
|
|
label="字典名称"
|
|
path="name"
|
|
:rule="{ required: true, message: '请输入字典名称', trigger: 'blur' }"
|
|
>
|
|
<n-input v-model:value="formData.name" placeholder="请输入字典名称" clearable />
|
|
</n-form-item>
|
|
<n-form-item
|
|
label="字典编码"
|
|
path="code"
|
|
:rule="{ required: true, message: '请输入字典编码', trigger: 'blur' }"
|
|
>
|
|
<n-input
|
|
v-model:value="formData.code"
|
|
:disabled="props.dictId"
|
|
placeholder="请输入字典编码"
|
|
clearable
|
|
/>
|
|
</n-form-item>
|
|
<n-form-item label="排序" path="sort">
|
|
<n-input-number v-model:value="formData.sort" />
|
|
</n-form-item>
|
|
<n-form-item label="备注" path="note">
|
|
<n-input
|
|
v-model:value="formData.note"
|
|
type="textarea"
|
|
placeholder="请输入备注"
|
|
clearable
|
|
/>
|
|
</n-form-item>
|
|
</n-form>
|
|
</template>
|
|
</basicModal>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { getDictDetail, dictAdd, dictUpdate } from '@/api/data/dictionary';
|
|
import { onMounted, reactive, ref } from 'vue';
|
|
import { useModal } from '@/components/Modal';
|
|
import { useMessage } from 'naive-ui';
|
|
|
|
/**
|
|
* 定义参数变量
|
|
*/
|
|
const emit = defineEmits(['success', 'update:visible']);
|
|
const formRef = ref();
|
|
|
|
/**
|
|
* 定义表单参数
|
|
*/
|
|
const formData = reactive({
|
|
id: '',
|
|
name: '',
|
|
code: '',
|
|
sort: 0,
|
|
note: '',
|
|
});
|
|
const message = useMessage();
|
|
|
|
/**
|
|
* 定义接收的参数
|
|
*/
|
|
const props = defineProps({
|
|
visible: {
|
|
type: Boolean,
|
|
required: true,
|
|
default: false,
|
|
},
|
|
dictId: {
|
|
type: Number,
|
|
required: true,
|
|
default: 0,
|
|
},
|
|
});
|
|
|
|
/**
|
|
* 定义模态
|
|
*/
|
|
const [modalRegister, { openModal, setSubLoading }] = useModal({
|
|
title: props.dictId ? '编辑字典' : '添加字典',
|
|
subBtuText: '确定',
|
|
width: 600,
|
|
});
|
|
/**
|
|
* 执行提交表单
|
|
*/
|
|
const handleSubmit = async () => {
|
|
formRef.value
|
|
.validate()
|
|
.then(async () => {
|
|
props.dictId ? await dictUpdate(formData) : await dictAdd(formData);
|
|
setSubLoading(false);
|
|
message.success('操作成功');
|
|
emit('update:visible', false);
|
|
emit('success');
|
|
})
|
|
.catch((error) => {
|
|
setSubLoading(false);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* 关闭窗体
|
|
*/
|
|
const handleClose = () => {
|
|
emit('update:visible', false);
|
|
};
|
|
|
|
/**
|
|
* 设置表单数据
|
|
*/
|
|
const setFormData = async () => {
|
|
const data = await getDictDetail(props.dictId);
|
|
for (const key in formData) {
|
|
if (data[key] != null && data[key] != undefined) {
|
|
//@ts-ignore
|
|
formData[key] = data[key];
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* 钩子函数
|
|
*/
|
|
onMounted(() => {
|
|
if (props.dictId) {
|
|
setFormData();
|
|
}
|
|
});
|
|
|
|
/**
|
|
* 定义函数
|
|
*/
|
|
defineExpose({
|
|
openModal,
|
|
});
|
|
</script>
|