From a17969e5e2244c5969ebbc62d5cb8b6c2059c9ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= <2178503051@qq.com> Date: Fri, 24 Apr 2026 14:39:16 +0800 Subject: [PATCH] =?UTF-8?q?refactor(wms):=20=E6=9B=BF=E6=8D=A2=E9=92=A2?= =?UTF-8?q?=E5=8D=B7=E5=8D=A1=E7=89=87=E4=B8=BA=E8=A1=A8=E6=A0=BC=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E5=B9=B6=E4=BC=98=E5=8C=96=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将多个视图中的钢卷卡片组件替换为KLPTable表格组件,统一展示钢卷信息 添加浮动层配置显示详细字段,优化操作按钮布局 调整页面列宽比例,简化操作记录卡片样式 --- klp-ui/src/views/wms/coil/do/correct.vue | 83 +++++++++++++- klp-ui/src/views/wms/coil/do/correntAll.vue | 82 +++++++++++++- klp-ui/src/views/wms/coil/panels/do.vue | 119 +++++++++++++++----- 3 files changed, 248 insertions(+), 36 deletions(-) diff --git a/klp-ui/src/views/wms/coil/do/correct.vue b/klp-ui/src/views/wms/coil/do/correct.vue index 0f6d39fc..36265464 100644 --- a/klp-ui/src/views/wms/coil/do/correct.vue +++ b/klp-ui/src/views/wms/coil/do/correct.vue @@ -45,12 +45,49 @@ -
-
+
+ + + + + + + + + + + + + + + +
@@ -294,7 +331,7 @@ export default { name: 'DoPage', dicts: ['action_type', 'coil_abnormal_code', 'coil_abnormal_position', 'coil_abnormal_degree', 'coil_quality_status', 'coil_business_purpose'], props: { - label: { + label: { type: String, default: () => '酸连轧工序' }, @@ -448,6 +485,40 @@ export default { correctVisible: false, buttonLoading: false, userList: [], + floatLayerConfig: { + columns: [ + { label: '入场钢卷号', prop: 'enterCoilNo' }, + { label: '当前钢卷号', prop: 'currentCoilNo' }, + { label: '厂家卷号', prop: 'supplierCoilNo' }, + { label: '逻辑库位', prop: 'warehouseName' }, + { label: '实际库位', prop: 'actualWarehouseName' }, + { label: '物料类型', prop: 'materialType' }, + { label: '班组', prop: 'team' }, + { label: '净重', prop: 'netWeight' }, + { label: '毛重', prop: 'grossWeight' }, + { label: '备注', prop: 'remark' }, + { label: '创建人', prop: 'createBy' }, + { label: '创建时间', prop: 'createTime' }, + { label: '更新人', prop: 'updateBy' }, + { label: '更新时间', prop: 'updateTime' }, + { label: '质量状态', prop: 'qualityStatus' }, + { label: '原料材质', prop: 'packingStatus' }, + { label: '切边要求', prop: 'edgeRequirement' }, + { label: '包装要求', prop: 'packagingRequirement' }, + { label: '物料名称', prop: 'itemName' }, + { label: '材质', prop: 'material' }, + { label: '规格', prop: 'specification' }, + { label: '镀层质量', prop: 'zincLayer' }, + { label: '厂家', prop: 'manufacturer' }, + { label: '调制度', prop: 'temperGrade' }, + { label: '镀层种类', prop: 'coatingType' }, + { label: '实测长度(m)', prop: 'actualLength' }, + { label: '实测宽度(m)', prop: 'actualWidth' }, + { label: '实测厚度(m)', prop: 'actualThickness' }, + { label: '钢卷表面处理', prop: 'coilSurfaceTreatment' }, + ], + title: '详细信息' + }, } }, computed: { diff --git a/klp-ui/src/views/wms/coil/do/correntAll.vue b/klp-ui/src/views/wms/coil/do/correntAll.vue index 072b94d7..ec4e0ba6 100644 --- a/klp-ui/src/views/wms/coil/do/correntAll.vue +++ b/klp-ui/src/views/wms/coil/do/correntAll.vue @@ -36,8 +36,46 @@
-
-
+
+ + + + + + + + + + + + + + +
@@ -131,7 +169,8 @@