From 0a50c9a0fa8fe33f5b9c2b79cb8a06031b1b13fb Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期一, 30 三月 2026 14:44:40 +0800
Subject: [PATCH] 下发增加传参productMaterialId、修正不属于砌块的强度问题

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

diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index 4760456..2182126 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -96,6 +96,10 @@
         <template #completeQuantity="{ row }">
           {{ row.completeQuantity || '-' }}<span style="color:rgb(42, 169, 146)"> 鏂�</span>
         </template>
+        <template #strength="{ row }">
+          <el-tag v-if="row.strength"
+                  :type="row.strength === 'A3.5' ? 'primary' : 'warning'">{{ row.strength }}</el-tag>
+        </template>
       </PIMTable>
     </div>
     <el-dialog v-model="bindRouteDialogVisible"
@@ -329,7 +333,9 @@
       label: "寮哄害",
       prop: "strength",
       width: "120px",
-      dataType: "tag",
+      dataType: "slot",
+      slot: "strength",
+      // formatData: val => (val ? val : ""),
     },
     {
       label: "鐗╂枡缂栫爜",

--
Gitblit v1.9.3