This commit is contained in:
曹辉 2023-04-28 10:30:27 +08:00
parent 85a4462f27
commit 06c315d06a
2 changed files with 20 additions and 6 deletions

View File

@ -134,9 +134,16 @@
},
//
videoplays() {
var that = this
uni.getSystemInfo({
success: function(res) {
if (res.platform == 'ios') {
if (this.videoitem.watchTime) {
this.videoContext.seek(this.videoitem.watchTime)
}
} else {}
}
});
},
videoplay(item) {
this.videoerroshow = true

View File

@ -122,9 +122,16 @@
},
//
videoplays() {
var that = this
uni.getSystemInfo({
success: function(res) {
if (res.platform == 'ios') {
if (this.videoitem.watchTime) {
this.videoContext.seek(this.videoitem.watchTime)
}
} else {}
}
});
},
//
videoplay(item) {