修复 XModel 高度无法自适应的问题

This commit is contained in:
YunaiV
2023-02-11 16:32:10 +08:00
parent d985ef194e
commit 53a9f3dabf
3 changed files with 7 additions and 7 deletions

View File

@ -66,7 +66,7 @@ const [registerTable, { reload, deleteData, exportList }] = useXTable({
// 表单相关的变量
const modalRef = ref()
const openModal = (actionType: string, id?: number) => {
modalRef.value.openModal(actionType, id)
const openModal = (type: string, id?: number) => {
modalRef.value.openModal(type, id)
}
</script>