微信應用號tabBar不顯示

weixin_34185560發表於2017-01-18

1.list中的第一個tab的地址必須定義在pages 中

"pages":["pages/Intent/Intent","pages/Services/Services","pages/Profile/Profile"],

2.list 中的 pagePath 必須是正確地址,如果出現不顯示的問題,99%是因為地址不正確

"selectedIconPath":"pages/Image/ic_tab_profile_select.png",#此處也錯了,此處pages該有斜槓/"iconPath":"pages/Image/ic_tab_profile_normal.png","pagePath":"/pages/Profile/Profile",#如此處錯了pages前面不該有斜槓/"text":"我的"

正確寫法為:

"list": [{"selectedIconPath":"/pages/Image/ic_tab_buycar_select.png","iconPath":"/pages/Image/ic_tab_buycar_normal.png","pagePath":"pages/Intent/Intent","text":"購車"},    ...]

專案結構為

1835265-578e0f4f4ed7dc22.jpg
1835265-c0cd4998f2620093.jpg

圖片路徑多了少了斜槓

相關文章