You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.1 KiB
97 lines
3.1 KiB
<template> |
|
<BasicModal v-bind="$attrs" |
|
width="720px" |
|
@ok="handleSubmit" |
|
@register="registerModal" |
|
> |
|
<BasicForm @register="registerForm"/> |
|
</BasicModal> |
|
</template> |
|
<script lang="ts" setup> |
|
/** |
|
* 提供模板规范代码参考,请尽量保证编写代码风格跟模板规范代码一致 |
|
* 采用vben-动态表格表单封装组件编写,采用 setup 写法 |
|
* Copyright © 2020-2022 <a href="http://www.entfrm.com/">entfrm</a> All rights reserved. |
|
* author entfrm开发团队-王翔 |
|
*/ |
|
import { ref, unref } from 'vue'; |
|
import { BasicForm, useForm } from '/@/components/Form/index'; |
|
import { addressFormSchema } from './address.data'; |
|
import { BasicModal, ModalProps, useModalInner } from '/@/components/Modal'; |
|
import { listAddr, addAddr, editAddr, getAddr} from '/@/api/platform/system/controller/address'; |
|
import { listToTree } from '/@/utils/helper/treeHelper'; |
|
import {isEmpty} from '/@/utils/is'; |
|
|
|
/** 通用变量统一声明区域 */ |
|
const tag = ref<Nullable<string>>(''); |
|
/** https://v3.cn.vuejs.org/api/options-data.html#emits */ |
|
const emit = defineEmits(['success', 'register']); |
|
const [registerForm, { resetFields, setFieldsValue, updateSchema, validate, clearValidate }] = useForm({ |
|
labelWidth: 100, |
|
schemas: addressFormSchema, |
|
showActionButtonGroup: false, |
|
baseColProps: { span: 24 } |
|
}); |
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data: WindowInnerData = { _tag: '' }) => { |
|
// 处理清除脏数据 |
|
await resetFields(); |
|
await clearValidate(); |
|
// 处理设置数据 |
|
tag.value = data._tag; |
|
const topAddr = { id: '0', name: '一级区域', children: [] }; |
|
topAddr.children = listToTree(await listAddr()); |
|
await updateSchema({ |
|
field: 'parentId', |
|
componentProps: { |
|
treeData: [topAddr] |
|
} |
|
}); |
|
await updateSchema({ |
|
field: 'id', |
|
componentProps: { |
|
disabled: tag.value == 'edit' |
|
}, |
|
}); |
|
|
|
const addrId = data.record?.id; |
|
const props: Partial<ModalProps> = { confirmLoading: false }; |
|
// 采用tag标签区分操作 |
|
switch (unref(tag)) { |
|
case 'add': |
|
props.title = '新增地址'; |
|
addrId && await setFieldsValue({ parentId: addrId }); |
|
break; |
|
case 'edit': |
|
props.title = '编辑地址'; |
|
await setFieldsValue(await getAddr(addrId)); |
|
break; |
|
} |
|
// 尾部:设置处理后的最终配置数据 |
|
setModalProps(props); |
|
}); |
|
|
|
/** 处理弹出框提交 */ |
|
async function handleSubmit() { |
|
try { |
|
// 提取验证数据 |
|
const formData = await validate(); |
|
// 处理提交之前逻辑 |
|
setModalProps({ confirmLoading: true }); |
|
// 采用tag标签区分操作 |
|
switch (unref(tag)) { |
|
case 'add': |
|
await addAddr(formData); |
|
break; |
|
case 'edit': |
|
await editAddr(formData); |
|
break; |
|
} |
|
// 处理提交完成之后逻辑 |
|
closeModal(); |
|
emit('success'); |
|
} finally { |
|
setModalProps({ confirmLoading: false }); |
|
} |
|
} |
|
|
|
</script>
|
|
|