lex 2 years ago
parent
commit
2037362626
1 changed files with 8 additions and 2 deletions
  1. 8 2
      src/views/process/list/handle.vue

+ 8 - 2
src/views/process/list/handle.vue

@@ -209,7 +209,7 @@
               >
               <el-button
                 type="warning"
-                v-if="is_end == 1 && processStructureValue.userAuthority"
+                v-if="is_end == 0 && processStructureValue.userAuthority"
                 round
                 @click="handleInversion(endNodeDetail)"
                 >转交</el-button
@@ -835,6 +835,11 @@ export default {
         let nodes = this.processStructureValue.nodes;
         this.principals = "处理中";
         for (var i = 0; i < nodes.length; i++) {
+          console.log(
+            nodes[i].id,
+            this.processStructureValue.workOrder.current_state,
+            "xji"
+          );
           if (
             nodes[i].id === this.processStructureValue.workOrder.current_state
           ) {
@@ -982,8 +987,9 @@ export default {
           }
         });
         this.btn_group = btn_group;
-
         this.isLoadingStatus = false;
+        console.log(this.circulationList, "circulationList");
+        console.log(this.currentNode, "currentNode  ");
         this.getAlertMessage();
       });
     },