65 lines
1.9 KiB
Vue
65 lines
1.9 KiB
Vue
<template>
|
|
<BasicModal v-bind="$attrs" @register="registerModal" :title="getTitle" @ok="handleSubmit" width="800px">
|
|
<BasicForm @register="registerForm" />
|
|
</BasicModal>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { defineProps, ref, computed, unref, reactive } from 'vue';
|
|
import { BasicModal, useModalInner } from '/src/components/Modal';
|
|
import { BasicForm, useForm } from '/src/components/Form';
|
|
import { itemFormSchema } from './SetupRun.data';
|
|
import { saveOrUpdateDictItem } from './SetupRun.api';
|
|
import { stringify } from 'querystring';
|
|
// 声明Emits
|
|
const emit = defineEmits(['success', 'register']);
|
|
const props = defineProps({ deployId: String });
|
|
const isUpdate = ref(true);
|
|
//表单配置
|
|
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({
|
|
schemas: itemFormSchema,
|
|
showActionButtonGroup: false,
|
|
mergeDynamicData: props,
|
|
labelCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 4 },
|
|
},
|
|
wrapperCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 18 },
|
|
},
|
|
});
|
|
//表单赋值
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
|
//重置表单
|
|
await resetFields();
|
|
setModalProps({ confirmLoading: false });
|
|
isUpdate.value = !!data?.isUpdate;
|
|
if (unref(isUpdate)) {
|
|
//表单赋值
|
|
await setFieldsValue({
|
|
...data.record,
|
|
});
|
|
}
|
|
});
|
|
|
|
//设置标题
|
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增' : '编辑'));
|
|
|
|
//表单提交事件
|
|
async function handleSubmit() {
|
|
try {
|
|
const values = await validate();
|
|
values.deployId = props.deployId;
|
|
setModalProps({ confirmLoading: true });
|
|
//提交表单
|
|
await saveOrUpdateDictItem(values, isUpdate.value);
|
|
//关闭弹窗
|
|
closeModal();
|
|
//刷新列表
|
|
emit('success');
|
|
} finally {
|
|
setModalProps({ confirmLoading: false });
|
|
}
|
|
}
|
|
</script>
|