diff --git a/pages/plugins/video/detail/detail.nvue b/pages/plugins/video/detail/detail.nvue index 62646d55..549a0237 100644 --- a/pages/plugins/video/detail/detail.nvue +++ b/pages/plugins/video/detail/detail.nvue @@ -187,7 +187,7 @@ - {{mainItem.name}} + {{mainItem.name}}{{ current_main_index === main_index }} @@ -202,7 +202,7 @@ - {{subItem}} + {{subItem}}{{ current_sub_index === sub_index }} @@ -397,7 +397,7 @@ this.windowHeight = data.windowHeight; // 调用公共事件方法 app.globalData.page_event_onshow_handle(); - + // 视频播放 if (!this.is_manual_pause && this.create_video_contexts && this.create_video_contexts[this.current_index]) { this.video_play_event(this.create_video_contexts[this.current_index]); diff --git a/pages/plugins/video/detail/detail.vue b/pages/plugins/video/detail/detail.vue index 8257edc2..97f089ae 100644 --- a/pages/plugins/video/detail/detail.vue +++ b/pages/plugins/video/detail/detail.vue @@ -371,7 +371,7 @@ onShow() { // 调用公共事件方法 app.globalData.page_event_onshow_handle(); - + console.log(this.is_manual_pause); // 视频播放 if (!this.is_manual_pause && this.create_video_contexts[this.current_index]) { this.video_play_event(this.create_video_contexts[this.current_index]);