From 8a06141bbd06ec982c6e39a1340bab901b90885a Mon Sep 17 00:00:00 2001 From: Mac666 Date: Tue, 5 Sep 2023 12:32:51 +0000 Subject: [PATCH] =?UTF-8?q?:bug:=20Fixing=20a=20bug.=20#I7PGW6=20=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=94=9F=E6=88=90=E5=99=A8=E3=80=90=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E3=80=91=E4=B8=8B=E6=8B=89=E6=A1=86=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mac666 --- src/views/gen/table/edit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/gen/table/edit.vue b/src/views/gen/table/edit.vue index 634f7442..210a6ee7 100644 --- a/src/views/gen/table/edit.vue +++ b/src/views/gen/table/edit.vue @@ -288,7 +288,7 @@ const getFieldTypeList = async () => { const { attrType, columnType } = item; if (!typeMap.has(attrType)) { typeMap.set(attrType, columnType); - typeList.value.push({ label: attrType, value: columnType }) + typeList.value.push({ label: attrType, value: attrType }) } }); // 增加Object类型 -- Gitee