123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <template>
- <div ref="globalModal">
- <BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :get-container="() => globalModal" width="90%" @ok="handleSubmit" :maskClosable="false">
- <BasicForm @register="registerForm" ref="formRef" name="CuspSupplierProfileForm"/>
- <!-- 子表单区域 -->
- <a-tabs v-model:activeKey="activeKey" animated @change="handleChangeTabs">
- <a-tab-pane tab="联系人(link man)" key="cuspSupplierProfileMan" :forceRender="true">
- <JVxeTable
- keep-source
- resizable
- ref="cuspSupplierProfileMan"
- :loading="cuspSupplierProfileManTable.loading"
- :columns="cuspSupplierProfileManTable.columns"
- :dataSource="cuspSupplierProfileManTable.dataSource"
- :maxHeight="340"
- :rowNumber="true"
- :rowSelection="true"
- :disabled="formDisabled"
- :toolbar="true"
- >
- <template #action="props">
- <a-divider type="vertical"/>
- <a-popconfirm title="确定删除吗?" @confirm="handleDelete(props)">
- <a>删除(delete)</a>
- </a-popconfirm>
- </template>
- </JVxeTable>
- </a-tab-pane>
- <a-tab-pane tab="资质信息(qualification information)" key="cuspSupplierProfileQualification" :forceRender="true">
- <JVxeTable
- keep-source
- resizable
- ref="cuspSupplierProfileQualification"
- :loading="cuspSupplierProfileQualificationTable.loading"
- :columns="cuspSupplierProfileQualificationTable.columns"
- :dataSource="cuspSupplierProfileQualificationTable.dataSource"
- :maxHeight="340"
- :rowNumber="true"
- :rowSelection="true"
- :disabled="formDisabled"
- :toolbar="true"
- >
- <template #action="props">
- <a-divider type="vertical"/>
- <a-popconfirm title="确定删除吗?" @confirm="handleDelete1(props)">
- <a>删除(delete)</a>
- </a-popconfirm>
- </template></JVxeTable>
- </a-tab-pane>
- </a-tabs>
- </BasicModal>
- </div>
- </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.ts'
- import {formSchema,cuspSupplierProfileManColumns,cuspSupplierProfileQualificationColumns} from '../CuspSupplierProfile.data';
- import {saveOrUpdate,cuspSupplierProfileManList,cuspSupplierProfileQualificationList} from '../CuspSupplierProfile.api';
- import { VALIDATE_FAILED } from '/@/utils/common/vxeUtils'
- // Emits声明
- const emit = defineEmits(['register','success']);
- const isUpdate = ref(true);
- const formDisabled = ref(false);
- const globalModal = ref()
- const refKeys = ref(['cuspSupplierProfileMan', 'cuspSupplierProfileQualification', ]);
- const activeKey = ref('cuspSupplierProfileMan');
- const cuspSupplierProfileMan = ref();
- const cuspSupplierProfileQualification = ref();
- const tableRefs = {cuspSupplierProfileMan, cuspSupplierProfileQualification, };
- const cuspSupplierProfileManTable = reactive({
- loading: false,
- dataSource: [],
- columns:cuspSupplierProfileManColumns
- })
- const cuspSupplierProfileQualificationTable = reactive({
- loading: false,
- dataSource: [],
- columns:cuspSupplierProfileQualificationColumns
- })
- //表单配置
- const [registerForm, {setProps,resetFields, setFieldsValue, validate}] = useForm({
- schemas: formSchema,
- showActionButtonGroup: false,
- baseColProps: {span: 8}
- });
- //表单赋值
- 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;
- if (unref(isUpdate)) {
- //表单赋值
- await setFieldsValue({
- ...data.record,
- });
- requestSubTableData(cuspSupplierProfileManList, {id:data?.record?.id}, cuspSupplierProfileManTable)
- requestSubTableData(cuspSupplierProfileQualificationList, {id:data?.record?.id}, cuspSupplierProfileQualificationTable)
- }
- // 隐藏底部时禁用整个表单
- 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 = 'cuspSupplierProfileMan';
- cuspSupplierProfileManTable.dataSource = [];
- cuspSupplierProfileQualificationTable.dataSource = [];
- }
- function classifyIntoFormData(allValues) {
- let main = Object.assign({}, allValues.formValue)
- return {
- ...main, // 展开
- cuspSupplierProfileManList: allValues.tablesValue[0].tableData,
- cuspSupplierProfileQualificationList: allValues.tablesValue[1].tableData,
- }
- }
- //表单提交事件
- async function requestAddOrEdit(values) {
- try {
- setModalProps({confirmLoading: true});
- //提交表单
- await saveOrUpdate(values, isUpdate.value);
- //关闭弹窗
- closeModal();
- //刷新列表
- emit('success');
- } finally {
- setModalProps({confirmLoading: false});
- }
- }
- function handleDelete({row}) {
- cuspSupplierProfileMan.value?.removeRows(row)
- }
- function handleDelete1({row}) {
- cuspSupplierProfileQualification.value?.removeRows(row)
- }
- </script>
- <style lang="less" scoped>
- /** 时间和数字输入框样式 */
- :deep(.ant-input-number) {
- width: 100%;
- }
- :deep(.ant-calendar-picker) {
- width: 100%;
- }
- /deep/.ant-form-item{
- margin-bottom: 8px !important;
- }
- /deep/.ant-tabs{
- margin-left: 2%;
- }
- /deep/.ant-modal{
- top: 34px;
- }
- </style>
|