wms-naivevue/src/views/content/layout/edit.vue
2024-12-12 13:29:34 +08:00

134 lines
3.0 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="85px"
>
<n-form-item label="描述" path="description">
<n-input type="textarea" v-model:value="formData.description" placeholder="请输入描述" />
</n-form-item>
<n-form-item
label="位置编号"
path="location"
:rule="{ required: true, message: '请输入位置编号', trigger: 'blur' }"
>
<number-input v-model="formData.location" placeholder="请输入位置编号" clearable />
</n-form-item>
<n-form-item label="排序" path="sort">
<n-input-number v-model:value="formData.sort" />
</n-form-item>
</n-form>
</template>
</basicModal>
</template>
<script lang="ts" setup>
import { getLayoutDetail, layoutAdd, layoutUpdate } from '@/api/content/layout';
import { onMounted, reactive, ref } from 'vue';
import { useMessage } from 'naive-ui';
import { useModal } from '@/components/Modal';
const emit = defineEmits(['success', 'update:visible']);
const formRef = ref();
/**
* 定义表单参数
*/
const message = useMessage();
const formData = reactive({
id: '',
description: '',
location: '',
sort: 0,
});
/**
* 定义接收的参数
*/
const props = defineProps({
visible: {
type: Boolean,
required: true,
default: false,
},
layoutId: {
type: Number,
required: true,
default: 0,
},
});
/**
* 定义模态
*/
const [modalRegister, { openModal, setSubLoading }] = useModal({
title: props.layoutId ? '编辑布局' : '添加布局',
subBtuText: '确定',
width: 600,
});
/**
* 执行提交
*/
const handleSubmit = async () => {
formRef.value
.validate()
.then(async () => {
props.layoutId ? await layoutUpdate(formData) : await layoutAdd(formData);
message.success('操作成功');
setSubLoading(false);
emit('update:visible', false);
emit('success');
})
.catch((error) => {
setSubLoading(false);
});
};
/**
* 关闭窗体
*/
const handleClose = () => {
emit('update:visible', false);
};
/**
* 设置表单数据
*/
const setFormData = async () => {
const data = await getLayoutDetail(props.layoutId);
for (const key in formData) {
if (data[key] != null && data[key] != undefined) {
//@ts-ignore
formData[key] = data[key];
}
}
formData.location = formData.location + '';
};
/**
* 钩子函数
*/
onMounted(() => {
if (props.layoutId) {
setFormData();
}
});
/**
* 定义函数
*/
defineExpose({
openModal,
});
</script>