54 lines
1.7 KiB
Vue
54 lines
1.7 KiB
Vue
<template>
|
|
<BasicModal v-bind="$attrs" @register="registerModal" :title="title" width="860px" @ok="handleSubmit">
|
|
<BasicForm @register="registerForm" />
|
|
</BasicModal>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, unref } from 'vue';
|
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
|
import { formSchema } from '../MesXslProductionOrder.data';
|
|
import { saveOrUpdate } from '../MesXslProductionOrder.api';
|
|
|
|
const emit = defineEmits(['register', 'success']);
|
|
const isUpdate = ref(true);
|
|
const isDetail = ref(false);
|
|
|
|
const [registerForm, { resetFields, setFieldsValue, validate, setProps }] = useForm({
|
|
labelWidth: 110,
|
|
schemas: formSchema,
|
|
showActionButtonGroup: false,
|
|
baseColProps: { span: 12 },
|
|
});
|
|
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
|
await resetFields();
|
|
setModalProps({ confirmLoading: false, showCancelBtn: data?.showFooter, showOkBtn: data?.showFooter });
|
|
isUpdate.value = !!data?.isUpdate;
|
|
isDetail.value = !data?.showFooter;
|
|
if (unref(isUpdate)) {
|
|
await setFieldsValue({ ...data.record });
|
|
} else {
|
|
await setFieldsValue({ splitStatus: 0 });
|
|
}
|
|
setProps({ disabled: !data?.showFooter });
|
|
});
|
|
|
|
const title = computed(() =>
|
|
!unref(isUpdate) ? '新增生产订单' : unref(isDetail) ? '生产订单详情' : '编辑生产订单',
|
|
);
|
|
|
|
async function handleSubmit() {
|
|
try {
|
|
const values = await validate();
|
|
setModalProps({ confirmLoading: true });
|
|
await saveOrUpdate(values, isUpdate.value);
|
|
closeModal();
|
|
emit('success');
|
|
} finally {
|
|
setModalProps({ confirmLoading: false });
|
|
}
|
|
}
|
|
</script>
|