From 8ba79292b0a1b6a8f93ca00432c6f2db827b1a93 Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期四, 19 三月 2026 17:32:29 +0800
Subject: [PATCH] 。

---
 src/views/productionManagement/processRoute/processRouteItem/index.vue |  218 ++++++++++++++++++++++++++++++++++++------------------
 1 files changed, 144 insertions(+), 74 deletions(-)

diff --git a/src/views/productionManagement/processRoute/processRouteItem/index.vue b/src/views/productionManagement/processRoute/processRouteItem/index.vue
index cd9260a..2a5186c 100644
--- a/src/views/productionManagement/processRoute/processRouteItem/index.vue
+++ b/src/views/productionManagement/processRoute/processRouteItem/index.vue
@@ -47,6 +47,7 @@
          class="section-header">
       <div class="section-title">宸ヨ壓璺嚎椤圭洰鍒楄〃</div>
       <div class="section-actions">
+        <div class="sort-tip">鎷栨嫿琛ㄦ牸鎺掑簭</div>
         <el-button icon="Grid"
                    @click="toggleView"
                    style="margin-right: 10px;">
@@ -90,8 +91,8 @@
       <el-table-column label="鏄惁璐ㄦ"
                        prop="isQuality">
         <template #default="scope">
-          <el-tag :type="scope.row.isQuality ? 'success' : 'danger'">
-            {{scope.row.isQuality ? '鏄�' : '鍚�' }}
+          <el-tag :type="scope.row.isQuality == 1 ? 'success' : 'danger'">
+            {{scope.row.isQuality == 1 ? '鏄�' : '鍚�' }}
           </el-tag>
         </template>
       </el-table-column>
@@ -118,6 +119,7 @@
       <div class="section-header">
         <div class="section-title">宸ヨ壓璺嚎椤圭洰鍒楄〃</div>
         <div class="section-actions">
+          <div class="sort-tip">闀挎寜鎷栨嫿鍗$墖鎺掑簭</div>
           <el-button icon="Menu"
                      @click="toggleView"
                      style="margin-right: 10px;">
@@ -141,8 +143,8 @@
               <div class="card-process-name">{{ getProcessName(item.processId) || '-' }}</div>
             </div>
             <!-- 浜у搧淇℃伅 -->
-            <div class="card-content">
-            </div>
+            <!-- <div class="card-content">
+            </div> -->
             <!-- 鎿嶄綔鎸夐挳 -->
             <div class="card-footer">
               <el-button type="primary"
@@ -232,8 +234,8 @@
         <el-form-item label="鏄惁璐ㄦ"
                       prop="isQuality">
           <el-switch v-model="form.isQuality"
-                     :active-value="true"
-                     inactive-value="false" />
+                     :active-value="1"
+                     :inactive-value="0" />
         </el-form-item>
       </el-form>
       <template #footer>
@@ -251,8 +253,10 @@
     <ProcessParamListDialog v-model="showParamListDialog"
                             :title="`${currentProcess ? getProcessName(currentProcess.processId) : ''} - 鍙傛暟鍒楄〃`"
                             :route-id="routeId"
-                            :editable="false"
+                            :editable="editable"
+                            :order-id="orderId"
                             :process="currentProcess"
+                            :page-type="pageType"
                             :param-list="paramList"
                             @refresh="refreshParamList" />
   </div>
@@ -280,6 +284,7 @@
     findProductProcessRouteItemList,
     deleteRouteItem,
     addRouteItem,
+    findProcessParamListOrder,
     addOrUpdateProductProcessRouteItem,
     sortRouteItem,
   } from "@/api/productionManagement/productProcessRoute.js";
@@ -295,6 +300,7 @@
   const routeId = computed(() => route.query.id);
   const orderId = computed(() => route.query.orderId);
   const pageType = computed(() => route.query.type);
+  const editable = computed(() => route.query.editable === "true");
 
   const tableLoading = ref(false);
   const tableData = ref([]);
@@ -341,7 +347,7 @@
     productName: "",
     model: "",
     unit: "",
-    isQuality: false,
+    isQuality: 0,
   });
 
   const rules = {
@@ -502,12 +508,10 @@
 
           const addPromise = isOrderPage
             ? addRouteItem({
-                productOrderId: orderId.value,
-                productRouteId: routeId.value,
+                orderId: orderId.value,
+                routeId: routeId.value,
                 processId: form.value.processId,
-                productModelId: form.value.productModelId,
                 isQuality: form.value.isQuality,
-                dragSort,
               })
             : addOrUpdateProcessRouteItem({
                 routeId: routeId.value,
@@ -537,7 +541,6 @@
             ? addOrUpdateProductProcessRouteItem({
                 id: form.value.id,
                 processId: form.value.processId,
-                productModelId: form.value.productModelId,
                 isQuality: form.value.isQuality,
               })
             : addOrUpdateProcessRouteItem({
@@ -660,6 +663,7 @@
         ghostClass: "sortable-ghost",
         handle: ".process-card",
         filter: ".el-button",
+        delay: 500, // 闀挎寜500姣鍚庡紑濮嬫嫋鎷�
         onEnd: evt => {
           if (evt.oldIndex === evt.newIndex || !tableData.value[evt.oldIndex])
             return;
@@ -730,50 +734,96 @@
   const handleViewParams = process => {
     currentProcess.value = process;
     // 璋冪敤API鑾峰彇鍙傛暟鍒楄〃
-    getProcessParamList({
-      routeItemId: process.id,
-      pageNum: 1,
-      pageSize: 1000,
-    })
-      .then(res => {
-        if (res.code === 200) {
-          paramList.value = res.data?.records || [];
-        } else {
-          ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
-          paramList.value = [];
-        }
-        showParamListDialog.value = true;
+    if (pageType.value === "order") {
+      findProcessParamListOrder({
+        orderId: orderId.value,
+        routeItemId: process.id,
+        pageNum: 1,
+        pageSize: 1000,
       })
-      .catch(err => {
-        console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
-        ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
-        paramList.value = [];
-        showParamListDialog.value = true;
-      });
+        .then(res => {
+          if (res.code === 200) {
+            paramList.value = res.data || [];
+          } else {
+            ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
+            paramList.value = [];
+          }
+          showParamListDialog.value = true;
+        })
+        .catch(err => {
+          console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
+          ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
+          paramList.value = [];
+          showParamListDialog.value = true;
+        });
+    } else {
+      getProcessParamList({
+        routeItemId: process.id,
+        pageNum: 1,
+        pageSize: 1000,
+      })
+        .then(res => {
+          if (res.code === 200) {
+            paramList.value = res.data?.records || [];
+          } else {
+            ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
+            paramList.value = [];
+          }
+          showParamListDialog.value = true;
+        })
+        .catch(err => {
+          console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
+          ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
+          paramList.value = [];
+          showParamListDialog.value = true;
+        });
+    }
   };
 
   // 鍒锋柊鍙傛暟鍒楄〃
   const refreshParamList = () => {
     if (!currentProcess.value) return;
     // 閲嶆柊璋冪敤API鑾峰彇鍙傛暟鍒楄〃
-    getProcessParamList({
-      routeItemId: currentProcess.value.id,
-      pageNum: 1,
-      pageSize: 1000,
-    })
-      .then(res => {
-        if (res.code === 200) {
-          paramList.value = res.data?.records || [];
-        } else {
-          ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
-          paramList.value = [];
-        }
+    if (pageType.value === "order") {
+      findProcessParamListOrder({
+        orderId: orderId.value,
+        routeItemId: currentProcess.value.id,
+        pageNum: 1,
+        pageSize: 1000,
       })
-      .catch(err => {
-        console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
-        ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
-        paramList.value = [];
-      });
+        .then(res => {
+          if (res.code === 200) {
+            paramList.value = res.data || [];
+          } else {
+            ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
+            paramList.value = [];
+          }
+        })
+        .catch(err => {
+          console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
+          ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
+          paramList.value = [];
+        });
+    } else {
+      getProcessParamList({
+        routeItemId: currentProcess.value.id,
+        pageNum: 1,
+        pageSize: 1000,
+      })
+        .then(res => {
+          if (res.code === 200) {
+            paramList.value = res.data?.records || [];
+          } else {
+            ElMessage.error(res.msg || "鑾峰彇鍙傛暟鍒楄〃澶辫触");
+            paramList.value = [];
+          }
+        })
+        .catch(err => {
+          console.error("鑾峰彇鍙傛暟鍒楄〃澶辫触锛�", err);
+          ElMessage.error("鑾峰彇鍙傛暟鍒楄〃澶辫触");
+          paramList.value = [];
+        });
+    }
   };
 
   onUnmounted(() => {
@@ -790,10 +840,10 @@
 
   .cards-wrapper {
     display: flex;
-    gap: 16px;
+    gap: 24px;
     overflow-x: auto;
     padding: 10px 0;
-    min-height: 200px;
+    /* min-height: 250px; */
   }
 
   .cards-wrapper::-webkit-scrollbar {
@@ -816,11 +866,12 @@
 
   .process-card {
     flex-shrink: 0;
-    width: 220px;
+    /* width: 300px; */
     background: #fff;
-    border-radius: 8px;
-    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
-    padding: 16px;
+    border-radius: 12px;
+    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
+    /* padding: 30px 24px; */
+    padding: 25px 50px;
     display: flex;
     flex-direction: column;
     cursor: move;
@@ -828,45 +879,45 @@
   }
 
   .process-card:hover {
-    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
-    transform: translateY(-2px);
+    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
+    transform: translateY(-4px);
   }
 
   .card-header {
     text-align: center;
-    margin-bottom: 12px;
+    margin-bottom: 20px;
   }
 
   .card-number {
-    width: 36px;
-    height: 36px;
-    line-height: 36px;
+    width: 60px;
+    height: 60px;
+    line-height: 60px;
     border-radius: 50%;
     background: #409eff;
     color: #fff;
     font-weight: bold;
-    font-size: 16px;
-    margin: 0 auto 8px;
+    font-size: 20px;
+    margin: 0 auto 16px;
   }
 
   .card-process-name {
-    font-size: 14px;
+    font-size: 18px;
     color: #333;
-    font-weight: 500;
+    font-weight: 600;
     word-break: break-all;
   }
 
   .card-content {
     flex: 1;
-    margin-bottom: 12px;
-    min-height: 60px;
+    margin-bottom: 20px;
+    min-height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
   }
 
   .product-info {
-    font-size: 13px;
+    font-size: 14px;
     color: #666;
     text-align: center;
     width: 100%;
@@ -879,7 +930,7 @@
   }
 
   .product-name {
-    margin-bottom: 6px;
+    margin-bottom: 8px;
     word-break: break-all;
     line-height: 1.5;
     text-align: center;
@@ -887,7 +938,7 @@
 
   .product-model {
     color: #909399;
-    font-size: 12px;
+    font-size: 13px;
     word-break: break-all;
     line-height: 1.5;
     text-align: center;
@@ -899,19 +950,32 @@
   }
 
   .product-tag {
-    margin: 10px 0;
+    margin: 12px 0;
   }
 
   .card-footer {
     display: flex;
-    justify-content: space-around;
-    padding-top: 12px;
+    justify-content: center;
+    gap: 20px;
+    padding-top: 16px;
     border-top: 1px solid #f0f0f0;
   }
 
   .card-footer .el-button {
     padding: 0;
-    font-size: 12px;
+    font-size: 14px;
+  }
+
+  .card-footer .el-button:nth-child(1) {
+    color: #409eff;
+  }
+
+  .card-footer .el-button:nth-child(2) {
+    color: #67c23a;
+  }
+
+  .card-footer .el-button:nth-child(3) {
+    color: #f56c6c;
   }
 
   :deep(.sortable-ghost) {
@@ -966,6 +1030,12 @@
     display: flex;
     align-items: center;
   }
+  .sort-tip {
+    font-size: 12px;
+    color: #909399;
+    margin-left: 8px;
+    margin-right: 20px;
+  }
 
   /* 宸ヨ壓璺嚎淇℃伅鍗$墖鏍峰紡 */
   .route-info-card {

--
Gitblit v1.9.3