|
@@ -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);
|