1.list中(zhong)的(de)第一個tab的(de)地址必須定義在pages 中(zhong)
"pages":[
"pages/Intent/Intent",
"pages/Services/Services",
"pages/Profile/Profile"
],
2.list 中的(de) pagePath 必須是正確(que)地(di)址,如(ru)果出現不顯示的(de)問題,99%是因(yin)為(wei)地(di)址不正確(que)
"selectedIconPath": "pages/Image/ic_tab_profile_select.png", #此處也錯了,此處pages該有斜杠/ "iconPath": "pages/Image/ic_tab_profile_normal.png", "pagePath": "/pages/Profile/Profile", #如此處錯了pages前面不該有斜杠/ "text": "我的"
正(zheng)確寫法為:
"list": [{
"selectedIconPath": "/pages/Image/ic_tab_buycar_select.png",
"iconPath": "/pages/Image/ic_tab_buycar_normal.png",
"pagePath": "pages/Intent/Intent",
"text": "購車"
},
...
]
項目結構為