<template>
|
<BasicModal v-bind="$attrs" @register="registerModal" :title="getTitle" @ok="handleSubmit">
|
<BasicForm @register="registerForm" />
|
</BasicModal>
|
</template>
|
<script lang="ts">
|
import { defineComponent, ref, computed, unref } from 'vue';
|
import { BasicModal, useModalInner } from '/@/components/Modal';
|
import { BasicForm, useForm } from '/@/components/Form/index';
|
import { formSchema } from './dept.data';
|
|
import { getTreeList, SaveDept } from '/@/api/tigerapi/dept';
|
export default defineComponent({
|
name: 'DeptModal',
|
components: { BasicModal, BasicForm },
|
emits: ['success', 'register'],
|
setup(_, { emit }) {
|
const isUpdate = ref(true);
|
|
const [registerForm, { resetFields, setFieldsValue, updateSchema, validate }] = useForm({
|
labelWidth: 100,
|
schemas: formSchema,
|
showActionButtonGroup: false,
|
actionColOptions: {
|
span: 24,
|
},
|
});
|
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
resetFields();
|
setModalProps({ confirmLoading: false });
|
isUpdate.value = !!data?.isUpdate;
|
|
if (unref(isUpdate)) {
|
setFieldsValue({
|
...data.record,
|
});
|
}
|
const treeData = await getTreeList();
|
updateSchema({
|
field: 'PARENT',
|
componentProps: { treeData },
|
});
|
});
|
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增组织' : '编辑组织'));
|
|
async function handleSubmit() {
|
try {
|
const values = await validate();
|
setModalProps({ confirmLoading: true });
|
// TODO custom api
|
//console.log(values);
|
const apiAction = SaveDept(values, unref(isUpdate),);
|
apiAction.then((action) => {
|
if (action.IsSuccessed) {
|
closeModal();
|
emit('success');
|
}
|
});
|
} finally {
|
setModalProps({ confirmLoading: false });
|
}
|
}
|
|
return { registerModal, registerForm, getTitle, handleSubmit };
|
},
|
});
|
</script>
|