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 |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/views/productionManagement/productionOrder/index.vue b/src/views/productionManagement/productionOrder/index.vue
index 3116256..2182126 100644
--- a/src/views/productionManagement/productionOrder/index.vue
+++ b/src/views/productionManagement/productionOrder/index.vue
@@ -91,10 +91,14 @@
                        :status="toProgressPercentage(row?.completionStatus) >= 100 ? 'success' : ''" />
         </template>
         <template #quantity="{ row }">
-          {{ row.quantity || '-' }}<span style="color:rgb(63, 95, 211)"> 鍧�</span>
+          {{ row.quantity || '-' }}<span style="color:rgb(63, 95, 211)"> 鏂�</span>
         </template>
         <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>
@@ -312,7 +316,7 @@
     {
       label: "鐢熶骇璁㈠崟鍙�",
       prop: "npsNo",
-      width: "120px",
+      width: "150px",
     },
     {
       label: "浜у搧鍚嶇О",
@@ -329,7 +333,9 @@
       label: "寮哄害",
       prop: "strength",
       width: "120px",
-      dataType: "tag",
+      dataType: "slot",
+      slot: "strength",
+      // formatData: val => (val ? val : ""),
     },
     {
       label: "鐗╂枡缂栫爜",

--
Gitblit v1.9.3