From 46e4be36748f814c69612f2991e38dce553ddb3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Sat, 10 Jan 2026 14:45:53 +0800 Subject: [PATCH 1/3] =?UTF-8?q?refactor(wms):=20=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E6=8E=89zha.vue=E4=B8=AD=E7=9A=84updateBy=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除不再使用的updateBy字段,保持代码整洁 --- klp-ui/src/views/wms/report/zha.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/klp-ui/src/views/wms/report/zha.vue b/klp-ui/src/views/wms/report/zha.vue index 8a5680a1..5afc8fa1 100644 --- a/klp-ui/src/views/wms/report/zha.vue +++ b/klp-ui/src/views/wms/report/zha.vue @@ -169,6 +169,7 @@ export default { pageNum: 1, dataType: 1, createBy: 'suanzhakuguan', + // updateBy: 'suanzhakuguan', warehouseId: '1988150099140866050' }), // 镀锌原料库 @@ -180,6 +181,7 @@ export default { pageNum: 1, dataType: 1, createBy: 'suanzhakuguan', + // updateBy: 'suanzhakuguan', warehouseId: '1988150263284953089' }), // 脱脂原料库 From 29ffac52020a33b09db9c324bd9bb08b1f67aaee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Sat, 10 Jan 2026 14:50:12 +0800 Subject: [PATCH 2/3] =?UTF-8?q?feat(wms):=20=E5=9C=A8=E7=94=9F=E4=BA=A7?= =?UTF-8?q?=E6=A0=87=E7=AD=BE=E9=A2=84=E8=A7=88=E4=B8=AD=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=8E=82=E5=AE=B6=E5=8D=B7=E5=8F=B7=E6=98=BE=E7=A4=BA=E5=B9=B6?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整生产标签预览的布局结构,新增厂家卷号显示字段。优化表格单元格样式,统一边框和内边距设置,提高标签的可读性和美观性。 --- .../LabelRender/ProductionTagPreview.vue | 83 ++++++++++++++----- 1 file changed, 61 insertions(+), 22 deletions(-) diff --git a/klp-ui/src/views/wms/coil/panels/LabelRender/ProductionTagPreview.vue b/klp-ui/src/views/wms/coil/panels/LabelRender/ProductionTagPreview.vue index 20e1d29f..762d6348 100644 --- a/klp-ui/src/views/wms/coil/panels/LabelRender/ProductionTagPreview.vue +++ b/klp-ui/src/views/wms/coil/panels/LabelRender/ProductionTagPreview.vue @@ -4,8 +4,7 @@ -
-
+
料卷号
-
+
{{ content.enterCoilNo || '' }}
-
+
+ 厂家卷号 +
+
+ {{ content.supplierCoilNo || '' }} +
+
+
+
逻辑库区
-
+
-
+
实际库区
-
+
-
+
规格(mm)
-
+
-
+
生产班组
-
+
- + - - +
@@ -320,6 +320,8 @@ export default { }, // 表单参数 form: { + dataType: 1, + // materialType: '原料', materialType: null, enterCoilNo: null, currentCoilNo: null, @@ -441,14 +443,14 @@ export default { }, /** 物料搜索 */ handleMaterialQuery() { - this.materialQueryParams.pageNum = 1 + this.form.pageNum = 1 this.getMaterialCoil() }, /** 重置物料搜索 */ resetMaterialQuery() { this.resetForm('materialQueryForm') - this.materialQueryParams.enterCoilNo = null - this.materialQueryParams.currentCoilNo = null + this.form.enterCoilNo = null + this.form.currentCoilNo = null this.handleMaterialQuery() }, /** 领料操作 */