From b1bd32a89b21b016e1e6e43fd2364fc316959b24 Mon Sep 17 00:00:00 2001 From: YunaiV Date: Wed, 20 May 2026 08:46:28 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=88iot=EF=BC=89:=20=E5=AE=8C=E5=96=84?= =?UTF-8?q?=20thingmodel=20=E7=9A=84=E8=BF=81=E7=A7=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../thing-model-array-data-specs.vue | 73 ------------------- .../thing-model-enum-data-specs.vue | 67 ----------------- packages/constants/src/dict-enum.ts | 8 ++ 3 files changed, 8 insertions(+), 140 deletions(-) delete mode 100644 apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-array-data-specs.vue delete mode 100644 apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-enum-data-specs.vue diff --git a/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-array-data-specs.vue b/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-array-data-specs.vue deleted file mode 100644 index a48f8afba..000000000 --- a/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-array-data-specs.vue +++ /dev/null @@ -1,73 +0,0 @@ - - - - diff --git a/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-enum-data-specs.vue b/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-enum-data-specs.vue deleted file mode 100644 index 9d2a6a03c..000000000 --- a/apps/web-antd/src/views/iot/thingmodel/modules/data-specs/thing-model-enum-data-specs.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - diff --git a/packages/constants/src/dict-enum.ts b/packages/constants/src/dict-enum.ts index ed93cf9fb..54ecd2703 100644 --- a/packages/constants/src/dict-enum.ts +++ b/packages/constants/src/dict-enum.ts @@ -175,6 +175,13 @@ const IOT_DICT = { IOT_MODBUS_FRAME_FORMAT: 'iot_modbus_frame_format', // IoT Modbus 帧格式 } as const; +/** ========== MES - 制造执行模块 ========== */ +const MES_DICT = { + MES_MD_ITEM_OR_PRODUCT: 'mes_md_item_or_product', // MES 物料/产品标识 + MES_WM_BARCODE_BIZ_TYPE: 'mes_wm_barcode_biz_type', // MES 条码业务类型 + MES_WM_BARCODE_FORMAT: 'mes_wm_barcode_format', // MES 条码格式 +} as const; + /** ========== WMS - 仓储管理模块 ========== */ const WMS_DICT = { WMS_MERCHANT_TYPE: 'merchant_type', // WMS 往来企业类型 @@ -192,6 +199,7 @@ const DICT_TYPE = { ...ERP_DICT, ...INFRA_DICT, ...IOT_DICT, + ...MES_DICT, ...WMS_DICT, ...MEMBER_DICT, ...MP_DICT,