From d5b0e0de7e8b446a39e6a623571899a33b559860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E6=9E=97=E8=BD=A9=E2=80=9D?= <317035359@qq.com> Date: Fri, 18 Jul 2025 11:22:45 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E5=86=85=E7=BD=AE?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E8=A1=A8=E5=8D=95=E5=8A=A0=E8=BD=BD=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ts/core/thing/standard/form.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/core/thing/standard/form.ts b/src/ts/core/thing/standard/form.ts index dbcd82662..b7f376029 100644 --- a/src/ts/core/thing/standard/form.ts +++ b/src/ts/core/thing/standard/form.ts @@ -390,7 +390,7 @@ export class Form extends StandardFileInfo implements IForm { name: attr.name, widget: attr.widget, options: attr.options, - code: attr.options?.isNative ? attr.propId : `T${attr.propId}`, + code:`T${attr.propId}`, info: attr.code, remark: attr.remark, speciesId: attr.property?.speciesId, -- Gitee From 2c1ac47601f330103d2ec234dcbe185a3c571cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E6=9E=97=E8=BD=A9=E2=80=9D?= <317035359@qq.com> Date: Fri, 18 Jul 2025 14:55:31 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=E5=A4=A7=E4=BB=AA=E5=95=86=E5=9F=8Elog?= =?UTF-8?q?o=E5=9B=BE=E6=A0=87=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Common/GlobalComps/typeIcon.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Common/GlobalComps/typeIcon.tsx b/src/components/Common/GlobalComps/typeIcon.tsx index 33ccba819..4cfd120b2 100644 --- a/src/components/Common/GlobalComps/typeIcon.tsx +++ b/src/components/Common/GlobalComps/typeIcon.tsx @@ -130,6 +130,7 @@ const TypeIcon = (info: TypeIconInfo) => { case '商城模板-数据': return renderImage('types/mallData', config); case '商城模板-实体': + case '商城模板-大仪': return renderImage('types/mallPhysical', config); case '打印模板': case '文档模板': -- Gitee From 701a174e9b771bca1fb9c6dba4b5816fe951c33e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9C=E6=9E=97=E8=BD=A9=E2=80=9D?= <317035359@qq.com> Date: Sun, 20 Jul 2025 23:44:24 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=E8=BF=98=E5=8E=9F=E5=86=85=E7=BD=AE?= =?UTF-8?q?=E5=B1=9E=E6=80=A7=E5=8A=A0=E8=BD=BD=E7=89=B9=E6=80=A7=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ts/core/thing/standard/form.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/core/thing/standard/form.ts b/src/ts/core/thing/standard/form.ts index b7f376029..dbcd82662 100644 --- a/src/ts/core/thing/standard/form.ts +++ b/src/ts/core/thing/standard/form.ts @@ -390,7 +390,7 @@ export class Form extends StandardFileInfo implements IForm { name: attr.name, widget: attr.widget, options: attr.options, - code:`T${attr.propId}`, + code: attr.options?.isNative ? attr.propId : `T${attr.propId}`, info: attr.code, remark: attr.remark, speciesId: attr.property?.speciesId, -- Gitee