From 1932a62477dfc3a7e604918c29d0d0d3bfa9c9d8 Mon Sep 17 00:00:00 2001
From: 张诺 <zhang_12370@163.com>
Date: 星期六, 25 四月 2026 15:07:19 +0800
Subject: [PATCH] 阳光印刷web 销售订单查询 客户往来调整间距

---
 src/views/productionManagement/productionOrder/index.vue |   43 ++++++++++++++++++++++++++++++++++++-------
 1 files changed, 36 insertions(+), 7 deletions(-)

diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index d2cf5f1..ecf90d3 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -94,7 +94,6 @@
   import { listMain as getOrderProcessRouteMain } from "@/api/productionManagement/productProcessRoute.js";
   import PIMTable from "@/components/PIMTable/PIMTable.vue";
   import BindRouteDialog from "./BindRouteDialog.vue";
-  import {getDeviceLedger} from "@/api/equipmentManagement/ledger.js";
   const NewProductOrder = defineAsyncComponent(() => import("@/views/productionManagement/productionOrder/New.vue"));
 
   const { proxy } = getCurrentInstance();
@@ -132,7 +131,7 @@
       width: '150px',
     },
     {
-      label: "瀹㈡埛鍚嶇О",
+      label: "鍘傚",
       prop: "customerName",
       width: '200px',
     },
@@ -142,7 +141,7 @@
       width: '120px',
     },
     {
-      label: "瑙勬牸",
+      label: "绾稿紶瑙勬牸",
       prop: "specificationModel",
       width: '120px',
     },
@@ -152,8 +151,28 @@
       width: '200px',
     },
     {
-      label: "闇�姹傛暟閲�",
+      label: "鍗板埛鏁伴噺",
       prop: "quantity",
+    },
+    {
+      label: "灏哄",
+      prop: "cutSize",
+      width: '120px',
+    },
+    {
+      label: "灏忕洅鏁伴噺",
+      prop: "smallBoxQty",
+      width: '120px',
+    },
+    {
+      label: "涓洅鏁伴噺",
+      prop: "mediumBoxQty",
+      width: '120px',
+    },
+    {
+      label: "鑹叉暟",
+      prop: "printColorCount",
+      width: '120px',
     },
     {
       label: "瀹屾垚鏁伴噺",
@@ -179,9 +198,14 @@
       width: 120,
     },
     {
-      label: "浜や粯鏃ユ湡",
+      label: "璁″垝浜よ揣鏃ユ湡",
       prop: "deliveryDate",
       formatData: val => (val ? dayjs(val).format("YYYY-MM-DD") : ""),
+      width: 120,
+    },
+    {
+      label: "澶囨敞",
+      prop: "remark",
       width: 120,
     },
     {
@@ -194,7 +218,7 @@
         {
           name: "缁戝畾宸ヨ壓璺嚎",
           type: "text",
-          showHide: row => !row.processRouteCode,
+          showHide: row => !row.printId,
           clickFun: row => {
             openBindRouteDialog(row);
           },
@@ -202,7 +226,7 @@
         {
           name: "鏌ョ湅宸ヨ壓璺嚎",
           type: "text",
-          showHide: row => row.processRouteCode,
+          showHide: row => row.printId,
           clickFun: row => {
             openBindRouteDialog(row,"view");
           },
@@ -292,6 +316,11 @@
       if (type === "view") {
         bindDialogType.value = "detail"
         const res = await viewGetByProductWordId(row.id)
+        if(res?.cuttingFileVo?.id ==null){
+          res.cuttingFileVo = []
+        }else{
+          res.cuttingFileVo = [res.cuttingFileVo]
+        }
         rowData.value = res?.data || res
       } else {
         bindDialogType.value = "add"

--
Gitblit v1.9.3