From 7e487a487d63c3068421944b9c37686b07a32c5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Wed, 8 Apr 2026 10:36:23 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=8F=91=E8=B4=A7=E7=AE=A1=E7=90=86):=20?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=8F=91=E8=B4=A7=E5=8D=95=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E5=B9=B6=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 重构发货单界面布局,使用可拖拽面板组件提升用户体验。新增订单绑定、逻辑库区显示等功能,并调整页面样式。 - 使用DragResizePanel组件实现可拖拽分割布局 - 新增订单绑定、解绑和切换功能 - 在详情表格中添加逻辑库区、厂家和品质字段 - 优化左侧面板可折叠功能 - 调整页面样式和响应式布局 --- .../src/components/DragResizePanel/index.vue | 159 ++++++ .../wms/delivery/components/detailTable.vue | 6 + .../wms/delivery/components/planList.vue | 8 +- .../src/views/wms/delivery/waybill/index.vue | 460 +++++++++++++----- 4 files changed, 514 insertions(+), 119 deletions(-) create mode 100644 klp-ui/src/components/DragResizePanel/index.vue diff --git a/klp-ui/src/components/DragResizePanel/index.vue b/klp-ui/src/components/DragResizePanel/index.vue new file mode 100644 index 00000000..d3e0e9a4 --- /dev/null +++ b/klp-ui/src/components/DragResizePanel/index.vue @@ -0,0 +1,159 @@ + + + + + \ No newline at end of file diff --git a/klp-ui/src/views/wms/delivery/components/detailTable.vue b/klp-ui/src/views/wms/delivery/components/detailTable.vue index 3e7b703a..cbb59e7c 100644 --- a/klp-ui/src/views/wms/delivery/components/detailTable.vue +++ b/klp-ui/src/views/wms/delivery/components/detailTable.vue @@ -38,6 +38,7 @@ + @@ -47,9 +48,11 @@ + + @@ -241,6 +244,9 @@ export default { if (coil) { item.actualWarehouseName = coil.actualWarehouseName; item.surfaceTreatmentDesc = coil.surfaceTreatmentDesc; + item.qualityStatus = coil.qualityStatus; + item.warehouseName = coil.warehouseName; + item.manufacturer = coil.manufacturer; } }); } diff --git a/klp-ui/src/views/wms/delivery/components/planList.vue b/klp-ui/src/views/wms/delivery/components/planList.vue index 3443b760..36cc3bd7 100644 --- a/klp-ui/src/views/wms/delivery/components/planList.vue +++ b/klp-ui/src/views/wms/delivery/components/planList.vue @@ -1,5 +1,5 @@