diff --git a/src/components/processNodeInformation/index.vue b/src/components/processNodeInformation/index.vue index 3176aa671..ab3f8ffce 100644 --- a/src/components/processNodeInformation/index.vue +++ b/src/components/processNodeInformation/index.vue @@ -1,188 +1,191 @@ @@ -211,7 +214,8 @@ processStep: '', nameList: [], loading: false, - num: 0 + num: 0, + loadingImg: false, } }, mounted() { @@ -253,6 +257,7 @@ actiProcInstId: this.prcId, flowType: this.prcType, } + this.loadingImg = true this.$http.get('/lawss/activiti/getImgDataList', query, { _this: this }, res => { @@ -269,6 +274,7 @@ let width = 248 * this.num let offsetWidth = flowGroupProcess[0].offsetWidth flowGroupProcess[0].style.width = (offsetWidth - (offsetWidth - 100 - width) + 40) + 'px' + this.loadingImg = false }) }, e => { }) @@ -371,6 +377,7 @@