
{
// 打開頁面的路徑
"pages": [ //pages數組中第一項表示應用啟動頁,參考:https://uniapp.dcloud.io/collocation/pages
// 在第一位的事默認打開的頁面
{
"path": "pages/message/message",
// 這是本頁面的樣式,這個樣式權重大於全局
"style": {
"navigationBarTitleText": "頁面獨有外觀樣式"
}
},{
"path": "pages/index/index",
"style": {
// 這是本頁面的標題
"navigationBarTitleText": "消息"
}
},{
"path": "pages/dition/dition",
"style": {
// 這是本頁面的標題
"navigationBarTitleText": "詳情"
}
}
],
// 狀態欄、導航條、標題、窗口背景色樣式等,這是全局的
"globalStyle": {
// 導航欄文字顏色
"navigationBarTextStyle": "white",
// 導航欄標題
"navigationBarTitleText": "uni-app",
// 導航欄背景色
"navigationBarBackgroundColor": "#075eb6",
// 開啟下拉刷新
"enablePullDownRefresh":true,
// 這個是開啟下拉后刷新的那個背景色
"backgroundColor": "#F8F8F8",
// 設置loading 樣式
"backgroundTextStyle":"light"
},
// 頁面下面的頁面切換
"tabBar":{
// 未選中的顏色
"color":"#a0522d",
// 選中后的文字顏色煩煩煩
"selectedColor":"#b3ee3a",
// 背景顏色
"backgroundColor":"#fff",
// 切換按鈕最少兩個最多五個
"list":[
{
//名稱
"text":"首頁",
//路徑
"pagePath":"pages/index/index",
//圖片
"iconPath":"static/zy.png",
// 選中后圖片
"selectedIconPath":"static/zyxzh.png"
},{
"text":"消息",
"pagePath":"pages/message/message"
}
]
},
"condition" : { //模式配置,僅開發期間生效
"current": 0, //當前激活的模式(list 的索引項)
"list": [
{
"name": "詳情頁", //模式名稱
"path": "pages/dition/dition", //啟動頁面,必選
"query": "id=80" //啟動參數,在頁面的onLoad函數里面得到
}
]
}
}