소스 검색

增加stopFn的null判断

zzs 2 달 전
부모
커밋
86a656b119
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      bidding-ui/src/views/mine/tenderOfferDetail.vue

+ 4 - 2
bidding-ui/src/views/mine/tenderOfferDetail.vue

@@ -185,8 +185,10 @@ export default {
         this.recoreEvent = []
       })
     } else {
-      this.stopFn()
-      this.stopFn = null
+      if (this.stopFn) {
+        this.stopFn()
+        this.stopFn = null
+      }
       this.recoreEvent = []
     }