1.list中的第一個tab的地址必須定義在pages 中
"pages":[
"pages/Intent/Intent",
"pages/Services/Services",
"pages/Profile/Profile"
],
2.list 中的 pagePath 必須是正確地址,如果出現(xiàn)不顯示的問題,99%是因?yàn)榈刂凡徽_
"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": "購車"
},
...
]
項(xiàng)目結(jié)構(gòu)為