En route 1 년 전
부모
커밋
347b5e30dc
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/components/videoCy/index.vue

+ 3 - 1
src/components/videoCy/index.vue

@@ -586,7 +586,9 @@ export default {
         //开启上次播放位置提示
         if (this.activeSection.videoCurrentTime) {
           this.showRecordStatus = true;
-          this.player_tencent.currentTime(Number(this.activeSection.videoCurrentTime) || 0);
+          if(this.viewSign == 2){
+            this.player_tencent.currentTime(Number(this.activeSection.videoCurrentTime) || 0);
+          }
           this.showRecordSetTimeOut = setTimeout(() => {
             this.showRecordStatus = false;
           }, 5000);