From 8fcd7a67e4391a5f1fbdb590c2a3f913aeb2a0a0 Mon Sep 17 00:00:00 2001
From: helongyang <647556386@qq.com>
Date: 星期二, 31 三月 2026 14:11:23 +0800
Subject: [PATCH] PP平库功能上线,PDA优化,部分问题点优化

---
 代码管理/WMS/WIDESEA_WMSClient/src/views/outbound/mesPPCutOutboundOrderDetail.vue |   82 +++++++++++++++-------------------------
 1 files changed, 31 insertions(+), 51 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/outbound/mesPPCutOutboundOrderDetail.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/outbound/mesPPCutOutboundOrderDetail.vue"
index a51f590..8d2cac0 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/outbound/mesPPCutOutboundOrderDetail.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSClient/src/views/outbound/mesPPCutOutboundOrderDetail.vue"
@@ -27,14 +27,7 @@
       sortName: "id",
     });
     const editFormFields = ref({
-      deviceCode: "",
-      deviceName: "",
-      deviceType: "",
-      deviceStatus: "",
-      deviceIp: "",
-      devicePort: "",
-      devicePlcType: "",
-      deviceRemark: "",
+
     });
     const editFormOptions = ref([
       [
@@ -63,37 +56,23 @@
           type: "string",
         },
       ],
-      [
-        { title: "璁惧IP", required: true, field: "deviceIp", type: "string" },
-        {
-          title: "璁惧绔彛",
-          required: true,
-          field: "devicePort",
-          type: "string",
-        },
-        {
-          title: "PLC绫诲瀷",
-          required: true,
-          field: "devicePlcType",
-          type: "string",
-        },
-        {
-          title: "澶囨敞",
-          field: "deviceRemark",
-          type: "string",
-        },
-      ],
+  
     ]);
     const searchFormFields = ref({
-      deviceCode: "",
-      deviceType: "",
-      deviceStatus: "",
+      
     });
     const searchFormOptions = ref([
       [
-        { title: "璁惧缂栧彿", field: "deviceCode" },
-        { title: "璁惧绫诲瀷", field: "deviceType" },
-        { title: "璁惧鐘舵��", field: "deviceStatus" },
+        { title: "鐗╂枡鍚嶇О", field: "materialName", type: "like" },
+        { title: "鐗╂枡缂栧彿", field: "materialCode", type: "like" },
+        { title: "鎵规鍙�", field: "batchNo", type: "like" },
+        {
+          title: "鍗曟嵁鏄庣粏鐘舵��",
+          field: "orderDetailStatus",
+          type: "select",
+          dataKey: "orderDetailStatusEnum",
+          data: [],
+        },
       ],
     ]);
     const columns = ref([
@@ -115,14 +94,14 @@
         hidden: true,
       },
       {
-        field: "materielCode",
+        field: "materialCode",
         title: "鐗╂枡缂栧彿",
         type: "string",
         width: 150,
         align: "left",
       },
       {
-        field: "materielName",
+        field: "materialName",
         title: "鐗╂枡鍚嶇О",
         type: "string",
         width: 150,
@@ -180,9 +159,10 @@
       {
         field: "orderDetailStatus",
         title: "璁㈠崟鏄庣粏鐘舵��",
-        type: "string",
+        type: "select",
         width: 180,
         align: "left",
+        bind: { key: "orderDetailStatusEnum", data: [] },
       },
       {
         field: "LayerCode",
@@ -235,21 +215,21 @@
       },
     ]);
     const detail = ref({
-      cnName: "#detailCnName",
-      table: "",
-      columns: [],
-      sortName: "",
-    });
+        cnName: "MES鍑哄簱鍗曟槑缁�",
+        table: "",
+        columns: [],
+        sortName: "",
+      });
     return {
-      table,
-      extend,
-      editFormFields,
-      editFormOptions,
-      searchFormFields,
-      searchFormOptions,
-      columns,
-      detail,
-    };
+        table,
+        extend,
+        editFormFields,
+        editFormOptions,
+        searchFormFields,
+        searchFormOptions,
+        columns,
+        detail,
+      };
   },
 });
 </script>

--
Gitblit v1.9.3