From 31f44ac4580e5b85130fa5ad4584433a70d79210 Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Tue, 28 Oct 2025 16:19:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BA=95=E9=83=A8=E8=8F=9C=E5=8D=95=E8=AF=BB?= =?UTF-8?q?=E5=8F=96=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/App.vue b/App.vue index 9c2a0ae5..55722036 100644 --- a/App.vue +++ b/App.vue @@ -1011,13 +1011,15 @@ */ app_tabbar_pages() { var temp_tabbar = this.data.system_tabbar; - var app_tabbar = this.get_config('app_tabbar') || null; - if(app_tabbar != null && (app_tabbar.content || null) != null && (app_tabbar.content.nav_content || null) != null) { - temp_tabbar = app_tabbar.content.nav_content.map(function(v) { - if((v.link || null) != null && (v.link.page || null) != null) { - return v.link.page; - } - }); + if(this.data.is_use_native_tabbar == 0) { + var app_tabbar = this.get_config('app_tabbar') || null; + if(app_tabbar != null && (app_tabbar.content || null) != null && (app_tabbar.content.nav_content || null) != null) { + temp_tabbar = app_tabbar.content.nav_content.map(function(v) { + if((v.link || null) != null && (v.link.page || null) != null) { + return v.link.page; + } + }); + } } return temp_tabbar; },