소스 검색

修改齐套显示的bug

695593266@qq.com 4 달 전
부모
커밋
8dad247152
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      src/views/productionPlan/components/checkProductionPreparations.vue

+ 5 - 3
src/views/productionPlan/components/checkProductionPreparations.vue

@@ -41,9 +41,11 @@
       </template>
 
       <template v-slot:statusStr="{ row }">
-        <span v-if="row.statusStr == '缺料'" style="color: red">{{
-          row.statusStr
-        }}</span>
+        <span
+          v-if="row.statusStr == '缺料' || row.statusStr == '不齐套'"
+          style="color: red"
+          >{{ row.statusStr }}</span
+        >
         <span v-else style="color: green">{{ row.statusStr }}</span>
       </template>