From e5fc6e13514228a3e938ae3e9b2a2bb0a1398e2a Mon Sep 17 00:00:00 2001 From: yinjiacheng Date: Thu, 9 Nov 2023 17:09:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0video=E7=A4=BA=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/component/video/video.uvue | 44 ++++++++++++++++---------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/pages/component/video/video.uvue b/pages/component/video/video.uvue index 30a3084c..2c139c5b 100644 --- a/pages/component/video/video.uvue +++ b/pages/component/video/video.uvue @@ -288,7 +288,7 @@ this.pageGesture = !this.pageGesture; console.log("pageGesture -> " + this.pageGesture) }, - setDirection: function (direction: number) { + setDirection: function (direction : number) { this.direction = direction; console.log("direction -> " + this.direction) }, @@ -361,40 +361,40 @@ console.log("header -> " + this.header) }, // 事件 - onPlay: function (res : any) { - console.log(JSON.stringify(res)); + onPlay: function (res : Event) { + console.log(res.type); this.isPlaying = true; this.isPause = false; }, - onPause: function (res : any) { - console.log(JSON.stringify(res)); + onPause: function (res : Event) { + console.log(res.type); this.isPlaying = false; this.isPause = true; }, - onEnded: function (res : any) { - console.log(JSON.stringify(res)); + onEnded: function (res : Event) { + console.log(res.type); }, - onTimeUpdate: function (_ : any) { - // console.log(JSON.stringify(res)); + onTimeUpdate: function (res : VideoTimeUpdateEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); }, - onFullScreenChange: function (res : any) { - console.log(JSON.stringify(res)); + onFullScreenChange: function (res : VideoFullScreenChangeEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); this.isFullScreen = !this.isFullScreen; }, - onWaiting: function (res : any) { - console.log(JSON.stringify(res)); + onWaiting: function (res : Event) { + console.log(res.type); }, - onError: function (res : any) { - console.log(JSON.stringify(res)); + onError: function (res : VideoErrorEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); }, - onProgress: function (res : any) { - console.log(JSON.stringify(res)); + onProgress: function (res : VideoProgressChangeEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); }, - onFullScreenClick: function (res : any) { - console.log(JSON.stringify(res)); + onFullScreenClick: function (res : VideoFullScreenClickEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); }, - onControlsToggle: function (res : any) { - console.log(JSON.stringify(res)); + onControlsToggle: function (res : VideoControlsToggleEvent) { + console.log(res.type + " -> " + JSON.stringify(res.detail)); }, // 自动化测试 playTest: function () { @@ -424,4 +424,4 @@ width: 750rpx; height: 400rpx; } - + \ No newline at end of file -- GitLab