root 2 년 전
부모
커밋
d51e3aef54
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/components/studyStudent.vue

+ 3 - 1
src/components/studyStudent.vue

@@ -2481,7 +2481,9 @@ export default {
       }
     },
     handleClose(done) {
-      this.videoDetail.sources[0].src=''
+      if(this.videoDetail.sources&&this.videoDetail.sources[0]){
+        this.videoDetail.sources[0].src=''
+      }
       this.commentIndexJson = {};
       done();
     },