123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <template>
- <BasicModal
- v-bind="$attrs"
- @register="registerModal"
- destroyOnClose
- :title="title"
- :body-style="{ padding: '20px 20px 0' }"
- :width="1200"
- @ok="handleSubmit"
- >
- <BasicForm @register="registerForm" ref="formRef" name="PurchaseApplicationForm" />
- <!-- 子表单区域 -->
- <a-tabs v-model:activeKey="activeKey" animated @change="handleChangeTabs">
- <a-tab-pane tab="采购申请相关附件" key="purchaseApplicationAttachment" :forceRender="true">
- <AttachmentsEditTable :formDisabled="formDisabled" ref="attachmentsTable" :mainId="info?.id" :mainTable="currentTable" />
- </a-tab-pane>
- <a-tab-pane tab="采购物料清单" key="materialList" :forceRender="true">
- <JVxeTable
- keep-source
- resizable
- ref="materialList"
- :loading="materialListTable.loading"
- :columns="materialListTable.columns"
- :dataSource="materialListTable.dataSource"
- :height="340"
- :rowNumber="true"
- :rowSelection="true"
- :disabled="formDisabled"
- :toolbar="true"
- >
- <template #recommendSupplierOne="props">
- <el-api-select v-model:value="props.row.recommendSupplierOne" labelField="supplierName" :api="supplierList" placeholder="请选择供应商" />
- </template>
- <template #recommendSupplierTwo="props">
- <el-api-select v-model:value="props.row.recommendSupplierTwo" labelField="supplierName" :api="supplierList" placeholder="请选择供应商" />
- </template>
- </JVxeTable>
- </a-tab-pane>
- </a-tabs>
- </BasicModal>
- </template>
- <script lang="ts" setup>
- import { ref, computed, unref, reactive } from 'vue';
- import { BasicModal, useModalInner } from '/@/components/Modal';
- import { BasicForm, useForm } from '/@/components/Form/index';
- import { JVxeTable } from '/@/components/jeecg/JVxeTable';
- import { useJvxeMethod } from '/@/hooks/system/useJvxeMethods';
- import { getFormSchema, materialListColumns, currentTable } from '../PurchaseApplication.data';
- import { saveOrUpdate, materialListList } from '../PurchaseApplication.api';
- import ElApiSelect from '/@/views/equipmentLifecycle/components/ElApiSelect.vue';
- import AttachmentsEditTable from '/@/views/equipmentLifecycle/manager/attachments/AttachmentsEditTable.vue';
- import { list as supplierList } from '/@/views/equipmentLifecycle/supplier/list/SupplierManage.api';
- // Emits声明
- const emit = defineEmits(['register', 'success']);
- const isUpdate = ref(true);
- const formDisabled = ref(false);
- const refKeys = ref(['materialList']);
- const activeKey = ref('purchaseApplicationAttachment');
- const attachmentsTable = ref();
- const materialList = ref();
- const tableRefs = { materialList };
- const materialListTable = reactive({
- loading: false,
- dataSource: [],
- columns: materialListColumns,
- });
- const { formSchema } = getFormSchema({
- onPurchasePlanSelect: (val, record) => {
- const { purchaseType, applicant, currentNode, approvalStatus, approvalEndTime, label } = record;
- setFieldsValue({
- purchasePlanId: val,
- purchaseTitle: label,
- purchasePlan: label,
- applicant,
- purchaseType: String(purchaseType),
- currentNode,
- approvalStatus: String(approvalStatus),
- approvalEndTime,
- });
- },
- });
- //表单配置
- const [registerForm, { setProps, resetFields, setFieldsValue }] = useForm({
- labelWidth: 100,
- schemas: formSchema,
- showActionButtonGroup: false,
- baseColProps: { span: 24 },
- });
- const info = ref<any>({});
- // 表单赋值
- const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
- //重置表单
- await reset();
- setModalProps({ confirmLoading: false, showCancelBtn: data?.showFooter, showOkBtn: data?.showFooter });
- isUpdate.value = !!data?.isUpdate;
- formDisabled.value = !data?.showFooter;
- info.value = data.record;
- if (unref(isUpdate)) {
- //表单赋值
- await setFieldsValue({
- ...data.record,
- approvalStatus: String(data.record.approvalStatus),
- });
- // 设置附件表格
- attachmentsTable.value.requestFileTableData();
- if (typeof requestSubTableData === 'function') {
- requestSubTableData(materialListList, { id: data?.record?.id }, materialListTable);
- }
- }
- // 隐藏底部时禁用整个表单
- setProps({ disabled: !data?.showFooter });
- });
- //方法配置
- const [handleChangeTabs, handleSubmit, requestSubTableData, formRef] = useJvxeMethod(
- requestAddOrEdit,
- classifyIntoFormData,
- tableRefs,
- activeKey,
- refKeys
- );
- //设置标题
- const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(formDisabled) ? '编辑' : '详情'));
- async function reset() {
- await resetFields();
- activeKey.value = 'purchaseApplicationAttachment';
- // 附件表格重置
- attachmentsTable.value.reset();
- materialListTable.dataSource = [];
- }
- function classifyIntoFormData(allValues) {
- let main = Object.assign({}, allValues.formValue);
- return {
- ...main, // 展开
- materialListList: allValues.tablesValue[0].tableData,
- };
- }
- //表单提交事件
- async function requestAddOrEdit(values) {
- try {
- setModalProps({ confirmLoading: true });
- // 验证附件是否有错误
- const valiRes = await attachmentsTable.value.validateTable();
- if (valiRes) {
- activeKey.value = 'purchaseApplicationAttachment';
- return;
- }
- // 提交表单
- await saveOrUpdate(values, isUpdate.value);
- // 保存附件
- await attachmentsTable.value.sumbit();
- //关闭弹窗
- closeModal();
- //刷新列表
- emit('success');
- } finally {
- setModalProps({ confirmLoading: false });
- }
- }
- </script>
- <style lang="less" scoped>
- /** 时间和数字输入框样式 */
- :deep(.ant-input-number) {
- width: 100%;
- }
- :deep(.ant-calendar-picker) {
- width: 100%;
- }
- </style>
|