소스 검색

1.特审复开修改

liuhy 2 년 전
부모
커밋
7041690cc0
2개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 0
      src/views/specialApply/modules/TaskCheckAudit.vue
  2. 5 3
      src/views/specialApply/modules/TaskCheckList.vue

+ 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