From 65394d652e4bd5cafd905b65e16a849b4671a3f9 Mon Sep 17 00:00:00 2001 From: hwj Date: Wed, 22 Jul 2026 09:24:49 +0800 Subject: [PATCH 1/4] =?UTF-8?q?style=EF=BC=9A=E8=AE=BE=E5=A4=87=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B/=E7=89=A9=E8=81=94=E8=AE=BE=E5=A4=87-=E7=BC=96?= =?UTF-8?q?=E8=BE=91=E6=8E=A5=E5=8F=A3=E6=B7=BB=E5=8A=A0=E5=80=8D=E7=8E=87?= =?UTF-8?q?=E4=BC=A0=E5=8F=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/iot/device/components/DeviceAttributeForm.vue | 2 +- .../iot/devicemodel/components/DeviceModelAttributeForm.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/iot/device/components/DeviceAttributeForm.vue b/src/views/iot/device/components/DeviceAttributeForm.vue index 17b35c37..b2761d3e 100644 --- a/src/views/iot/device/components/DeviceAttributeForm.vue +++ b/src/views/iot/device/components/DeviceAttributeForm.vue @@ -202,7 +202,7 @@ const buildSubmitData = () => { dataType, address, dataUnit, - ratio: ratioEnabled.value ? ratio : undefined, + ratio, remark, deviceId } diff --git a/src/views/iot/devicemodel/components/DeviceModelAttributeForm.vue b/src/views/iot/devicemodel/components/DeviceModelAttributeForm.vue index 82dd26ee..d1c2fe57 100644 --- a/src/views/iot/devicemodel/components/DeviceModelAttributeForm.vue +++ b/src/views/iot/devicemodel/components/DeviceModelAttributeForm.vue @@ -173,7 +173,7 @@ const buildSubmitData = () => { dataType, address, dataUnit, - ratio: ratioEnabled.value ? ratio : undefined, + ratio, remark, deviceModelId } From ccdc0f4a744c5f75d026bc009130e566c61b458a Mon Sep 17 00:00:00 2001 From: zhongwenkai <3478244299@qq.com> Date: Wed, 22 Jul 2026 11:00:03 +0800 Subject: [PATCH 2/4] =?UTF-8?q?feat:=20=E5=85=A5=E5=BA=93/=E5=87=BA?= =?UTF-8?q?=E5=BA=93/=E8=B0=83=E6=8B=A8/=E7=9B=98=E7=82=B9/=E6=89=98?= =?UTF-8?q?=E7=9B=98=20=E6=90=9C=E7=B4=A2=E6=A0=8F=E4=B8=8A=E6=96=B9?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=8A=B6=E6=80=81=E7=BB=9F=E8=AE=A1=E5=8D=A1?= =?UTF-8?q?=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/zh-CN.ts | 26 +++++ src/views/erp/stock/checkExecution/index.vue | 100 ++++++++++++++++++- src/views/erp/stock/in/index.vue | 80 ++++++++++++++- src/views/erp/stock/move/index.vue | 96 +++++++++++++++++- src/views/erp/stock/out/index.vue | 75 ++++++++++++++ src/views/erp/stock/pallet/index.vue | 72 +++++++++++++ 6 files changed, 440 insertions(+), 9 deletions(-) diff --git a/src/locales/zh-CN.ts b/src/locales/zh-CN.ts index 1b96d3be..be44a029 100644 --- a/src/locales/zh-CN.ts +++ b/src/locales/zh-CN.ts @@ -700,6 +700,11 @@ export default { exportName: '产品库存.xls' }, In: { + all: '全部', + waitIn: '待入库', + rejected: '已驳回', + auditing: '审核中', + inStock: '已入库', no: '入库单号', product: '产品', inTime: '入库时间', @@ -762,6 +767,11 @@ export default { addItem: '添加入库产品' }, Out: { + all: '全部', + waitOut: '待出库', + rejected: '已驳回', + auditing: '审核中', + outStock: '已出库', no: '出库单号', customer: '客户', product: '产品', @@ -907,6 +917,13 @@ export default { stockCountExceededWarning: '数量不能超出可用库存,已自动调整为可用库存数量' }, Check: { + all: '全部', + waitSubmit: '待提交', + rejected: '已驳回', + auditing: '审核中', + approved: '审核通过', + checked: '已盘点', + unchecked: '未盘点', no: '盘点单号', product: '产品', checkTime: '盘点时间', @@ -1045,6 +1062,11 @@ export default { exportName: '产品库存明细.xls' }, Move: { + all: '全部', + waitSubmit: '待提交', + rejected: '已驳回', + auditing: '审核中', + approved: '审核通过', no: '调拨单号', product: '产品', moveTime: '调度时间', @@ -1117,6 +1139,10 @@ export default { validatorStatusRequired: '状态不能为空' }, Pallet: { + all: '全部', + idle: '空闲', + occupied: '占用', + scrapped: '报废', code: '托盘编码', palletType: '托盘类型', specification: '规格', diff --git a/src/views/erp/stock/checkExecution/index.vue b/src/views/erp/stock/checkExecution/index.vue index 081bb9e1..ab4c50f9 100644 --- a/src/views/erp/stock/checkExecution/index.vue +++ b/src/views/erp/stock/checkExecution/index.vue @@ -1,5 +1,13 @@