1.list中的第一個(gè)tab的地址必須定義在pages 中
"pages":[
"pages/Intent/Intent",
"pages/Services/Services",
"pages/Profile/Profile"
],
2.list 中的 pagePath 必須是正確地址,如果出現(xiàn)不顯示的問(wèn)題,99%是因?yàn)榈刂凡徽_
"selectedIconPath": "pages/Image/ic_tab_profile_select.png", #此處也錯(cuò)了,此處pages該有斜杠/ "iconPath": "pages/Image/ic_tab_profile_normal.png", "pagePath": "/pages/Profile/Profile", #如此處錯(cuò)了pages前面不該有斜杠/ "text": "我的"
正確寫(xiě)法為:
"list": [{
"selectedIconPath": "/pages/Image/ic_tab_buycar_select.png",
"iconPath": "/pages/Image/ic_tab_buycar_normal.png",
"pagePath": "pages/Intent/Intent",
"text": "購(gòu)車(chē)"
},
...
]
項(xiàng)目結(jié)構(gòu)為