diff --git a/src/components/CURD/PageModal.vue b/src/components/CURD/PageModal.vue
index fe1fa5c9..637445cc 100644
--- a/src/components/CURD/PageModal.vue
+++ b/src/components/CURD/PageModal.vue
@@ -7,7 +7,6 @@
v-bind="{ destroyOnClose: true, ...modalConfig.drawer }"
@close="handleClose"
>
-
@@ -57,7 +56,7 @@
-
+
确 定
{{ !formDisable ? "取 消" : "关闭" }}
@@ -68,60 +67,60 @@
-
-
-
-
-
-
-
-
- {{ item?.label || "" }}
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ {{ item?.label || "" }}
+
+
+
+ :
+
-
-
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
确 定
{{ !formDisable ? "取 消" : "关闭" }}
@@ -144,7 +143,7 @@ const props = defineProps<{ modalConfig: IModalConfig }>();
// 自定义事件
const emit = defineEmits<{ submitClick: []; customSubmit: [queryParams: IObject] }>();
// 组件映射表
-/* eslint-disable */
+
const componentMap = new Map([
// @ts-ignore
["input", markRaw(ElInput)], // @ts-ignore
@@ -170,7 +169,6 @@ const childrenMap = new Map([
["radio", markRaw(ElRadio)], // @ts-ignore"
["checkbox", markRaw(ElCheckbox)],
]);
-/* eslint-enable */
const pk = props.modalConfig.pk ?? "id"; // 主键名,用于表单数据处理
const modalVisible = ref(false); // 弹窗显示状态