From 57a04b55977c6e5bd2f4e64d234299c1f1258365 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Fri, 13 Feb 2026 18:08:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BF=94=E5=9B=9E=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E6=98=BE=E7=A4=BA=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/plugins/video/index/index.vue | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/pages/plugins/video/index/index.vue b/pages/plugins/video/index/index.vue index b91f17e5..83929c83 100644 --- a/pages/plugins/video/index/index.vue +++ b/pages/plugins/video/index/index.vue @@ -5,8 +5,14 @@ - - + + + + + + + + @@ -84,6 +90,7 @@ export default { // #ifdef APP top_content_style: 'padding-top:' + bar_height + 'px;padding-bottom:10px;', // #endif + is_show_back: true, tabs: [], current_tabs_index: 0, current_tabs_id: '', @@ -120,8 +127,9 @@ export default { // #ifdef MP-ALIPAY padding_left = video_get_top_left_padding(); // #endif - + let pages = getCurrentPages(); this.setData({ + is_show_back: pages.length > 1 && !app.globalData.is_tabbar_pages(), header_padding_left: padding_left, menu_button_info: menu_button_info, }); @@ -217,7 +225,10 @@ export default { } else { app.globalData.url_open(`/pages/plugins/video/detail/detail?id=${id}`, false); } - } + }, + handle_back() { + app.globalData.page_back_prev_event(); + }, } };