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.
74 lines
1.9 KiB
74 lines
1.9 KiB
<template> |
|
<BasicModal |
|
v-bind="$attrs" |
|
@register="registerDrawer" |
|
showFooter |
|
:title="getTitle" |
|
width="50%" |
|
@ok="handleSubmit" |
|
> |
|
<BasicForm @register="registerForm" /> |
|
</BasicModal> |
|
</template> |
|
<script lang="ts" setup> |
|
import { ref, computed, unref } from 'vue'; |
|
import { BasicForm, useForm } from '/@/components/Form/index'; |
|
import { formSchema } from './menu.data'; |
|
import { BasicModal, useModalInner } from '/@/components/Modal'; |
|
import { listMenu, addMenu, editMenu } from '/@/api/system/menu'; |
|
|
|
// 定义emit |
|
const emit = defineEmits(['success', 'register']); |
|
|
|
//定义props |
|
const props = defineProps({ |
|
updateFlag: Boolean |
|
}); |
|
|
|
var isUpdate = ref(props.updateFlag);//转换成响应式对象 |
|
|
|
const [registerForm, { resetFields, setFieldsValue, updateSchema, validate }] = useForm({ |
|
labelWidth: 100, |
|
schemas: formSchema, |
|
showActionButtonGroup: false, |
|
actionColOptions: { |
|
span: 23, |
|
}, |
|
}); |
|
|
|
const [registerDrawer, { setModalProps, closeModal }] = useModalInner(async (data) => { |
|
resetFields(); |
|
setModalProps({ confirmLoading: false }); |
|
isUpdate.value = !!data?.isUpdate; |
|
|
|
if (unref(isUpdate)) { |
|
setFieldsValue({ |
|
...data.record, |
|
}); |
|
} |
|
const treeData = await menuList(); |
|
treeData.unshift({ id: '0', name: '顶级菜单' }); |
|
updateSchema({ |
|
field: 'parentId', |
|
componentProps: { treeData }, |
|
}); |
|
}); |
|
|
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增菜单' : '编辑菜单')); |
|
|
|
async function handleSubmit() { |
|
try { |
|
const values = await validate(); |
|
setModalProps({ confirmLoading: true }); |
|
if(unref(isUpdate)) { |
|
await menuUpdate(values); |
|
}else{ |
|
await menuAdd(values); |
|
} |
|
closeModal(); |
|
emit('success'); |
|
} finally { |
|
setModalProps({ confirmLoading: false }); |
|
} |
|
} |
|
</script>
|
|
|