Procházet zdrojové kódy

1.特审复开修改

liuhy před 2 roky
rodič
revize
7041690cc0

+ 2 - 0
src/views/specialApply/modules/TaskCheckAudit.vue

@@ -2663,6 +2663,8 @@ export default {
           infoModel.notes = that.packageArr(result.notes);
           infoModel.notesRemark = result.notesRemark;
           that.infoModel = infoModel
+          // 步骤条
+          that.stepLoading();
           that.findCheckState(result.id)
 
         }

+ 5 - 3
src/views/specialApply/modules/TaskCheckList.vue

@@ -167,7 +167,7 @@
           </template>
 
           <template v-slot:shutdownLabel="text, record">
-           <span style="width: 200px;max-width: 30em;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: block;">{{shutdownLabelSpan(text)}}</span>
+           <span style="width: 200px;max-width: 30em;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: block;">{{shutdownLabelSpan(text,record)}}</span>
           </template>
 
 
@@ -605,7 +605,7 @@ export default {
       }
     },
     // 关停标签处理
-    shutdownLabelSpan(text){
+    shutdownLabelSpan(text,record){
       let value = '';
       if (text){
         text = text.split(",")
@@ -637,7 +637,9 @@ export default {
           value = value + " " + "实人核验未通过关停(单停) ";
         }
         if (text.indexOf("999") > -1){
-          value = value + " " + "其它 ";
+          if (record.shutdownLabelOther){
+            value = value + " " + "其它:"+ record.shutdownLabelOther;
+          }
         }
       }
       return value