This commit is contained in:
2025-09-04 23:44:35 +08:00
parent fab66c0351
commit 852097212d
82 changed files with 14 additions and 6 deletions

View File

@@ -1677,7 +1677,7 @@ export default {
this.trueFalse = false
}
//console.log("当前播放11",itme);
//console.log("当前播放11"+itme);
console.log("当前播放11"+itme);
let intTime = parseInt(e.detail.currentTime);
if (intTime > this.videoPlayingTime) {
this.videoPlayingTime = intTime;
@@ -1705,12 +1705,12 @@ export default {
}
//以下是每隔10秒存储一下进度
let saveTime = Math.floor(intTime % 10);
// console.log(intTime,saveTime,'aa',this.curContent.studyItemId)
console.warn(intTime,saveTime,'aa',this.curContent.studyItemId)
if (this.preTime != intTime && saveTime == 0 && this.curContent.studyItemId != '') {
this.preTime = intTime;
this.curContent.lastStudyTime = intTime;
//记录播放时间
//console.log('记录播放时间:'+intTime);
console.log('记录播放时间:'+intTime);
let postData = {
itemId: this.curContent.studyItemId,
videoTime: intTime,