pages.json 配置頁面
{ "pages": [ //pages數組中第一項表示應用啟動頁,可以隨時換成自己想要的默認的啟動頁 { "path": "pages/index/index", "style": { "navigationBarTitleText": "uni-app" } }, {//每建立一個.vue頁面都要在pages中建立一套 "path": "pages/about/about", "style": { "navigationBarTitleText": "uni about" } } ], "globalStyle": {//全局的樣式 "navigationBarTextStyle": "black",//導航欄標題顏色 "navigationBarTitleText": "uni-app", //導航欄標題文字內容 "navigationBarBackgroundColor": "#F8F8F8",//導航欄背景顏色 "backgroundColor": "#F8F8F8",//窗口的背景色 微信小程序 "navigationStyle":"default",//導航欄樣式,僅支持 default/custom,開啟custom后,所有窗口均無導航欄。 } }
tabBar
color:tab上的文字默認顏色
selectabColor : 是tab上的文字選中時的顏色
backgroundColor: tab的背景色
borderStyle : tabbar上邊狂的顏色,僅支持black/white
list: array是tab的列表,詳見list屬性說明,最少2個,最多5個tab
posiston: 可選值bottom、top
{ "pages": [ //pages數組中第一項表示應用啟動頁,可以隨時換成自己想要的默認的啟動頁 { "path": "pages/index/index", "style": { "navigationBarTitleText": "主頁" } }, {//每建立一個.vue頁面都要在pages中建立一套 "path": "pages/about/about", "style": { "navigationBarTitleText": "關於" } } ], "globalStyle": {//全局的樣式 "navigationBarTextStyle": "black",//導航欄標題顏色 "navigationBarTitleText": "uni-app", //導航欄標題文字內容 "navigationBarBackgroundColor": "#F8F8F8",//導航欄背景顏色 "backgroundColor": "#F8F8F8",//窗口的背景色 微信小程序 "navigationStyle":"default"//導航欄樣式,僅支持 default/custom,開啟custom后,所有窗口均無導航欄。 }, "tabBar": { "color":"#8a8a8a", "selectedColor":"#00aa00", "borderStyle":"black", "backgroundColor":"#ffffff", "list": [ { "pagePath":"pages/index/index", "text":"首頁", "iconPath":"static/image/home.png", "selectedIconPath":"static/image/home_HL.png" }, { "pagePath":"pages/about/about", "text":"我的", "iconPath":"static/image/about.png", "selectedIconPath":"static/image/about_HL.png" } ] } }