Browse Source

研报bug-fixed

cldu 9 months ago
parent
commit
e54169a880
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/approve_manage/approveEdit.vue

+ 2 - 2
src/views/approve_manage/approveEdit.vue

@@ -153,7 +153,7 @@ export default {
                 }
             })
         },
-        getFlowDetail(){
+        getReportFlowDetail(){
             const id = this.$route.query.flowId||0
             if(id){
                 approveInterence.getApproveFlowDetail({
@@ -190,7 +190,7 @@ export default {
         },
         afterGetBaseConfig(){ //渲染之后执行否则组件会监听不到
             if(this.$route.query.flowId){
-                this.$route.query.mainType == 'report' ? this.getFlowDetail() : this.getBiFlowDetail();
+                this.$route.query.mainType == 'report' ? this.getReportFlowDetail() : this.getBiFlowDetail();
             }
         },