tabBar不显示?
在任何机型中,包括真机中都不显示,直接附上 app.json 的 代码
{ "pages" : [ "pages/index/index" , "pages/logs/logs" ], "window" : { "backgroundTextStyle" : "light" , "navigationBarBackgroundColor" : "#FFFAFA" , "navigationBarTitleText" : "Allen" , "navigationBarTextStyle" : "black" }, "tabBar" : { "color" : "#000000" , "selectedColor" : "#CD5C5C" , "backgroundColor" : "#FAF0E6" , "position" : "bottom" , "list" : [ { "pagePath" : "pages/logs/logs" , "text" : "bye" , "iconPath" : "icons/caihong.png" , "selectedIconPath" : "icons/caihong.png" }, { "pagePath" : "pages/logs/logs" , "text" : "my" , "iconPath" : "icons/shuilao.png" , "selectedIconPath" : "icons/shuilao.png" } ] } } |