Browse Source

fix(tabbar): 修复自定义tabbar列表映射时缺少字段的问题

feige996 8 months ago
parent
commit
2d68168a23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/tabbar/config.ts

+ 1 - 1
src/tabbar/config.ts

@@ -110,7 +110,7 @@ export const customTabbarEnable
  */
 export const needHideNativeTabbar = selectedTabbarStrategy === TABBAR_STRATEGY_MAP.CUSTOM_TABBAR_WITH_CACHE
 
-export const tabbarList = customTabbarEnable ? customTabbarList : nativeTabbarList
+export const tabbarList = customTabbarEnable ? customTabbarList.map(item => ({ text: item.text, pagePath: item.pagePath })) : nativeTabbarList
 
 const _tabbar: TabBar = {
   // 只有微信小程序支持 custom。App 和 H5 不生效