From 7f2f816590fb22a7806c02fcff65eaed017a7b41 Mon Sep 17 00:00:00 2001 From: opd-admin Date: Mon, 30 Mar 2026 09:26:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AE=8C=E6=88=90NAS=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ProTable/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProTable/index.vue b/src/components/ProTable/index.vue index a10397c..3639975 100644 --- a/src/components/ProTable/index.vue +++ b/src/components/ProTable/index.vue @@ -166,7 +166,7 @@ const enumMap = ref(new Map()); provide("enumMap", enumMap); const setEnumMap = async (col: ColumnProps) => { if (!col.enum) return; - // 如果当前 enum 为后台数据需要请求数据,则调用该请求接口,并存储到 enumMap + // 如果当前 enum 为后台数1据需要请求数据,则调用该请求接口,并存储到 enumMap if (typeof col.enum !== "function") return enumMap.value.set(col.prop!, col.enum!); const { data } = await col.enum(); enumMap.value.set(col.prop!, data);