配置官網(wǎng)詳細說明、
https://uniapp.dcloud.io/collocation/pages?id=pages

image.png

image.png

image.png
導航搜索欄屬性、

image.png
{
"pages": [ //pages數(shù)組中第一項表示應用啟動頁,參考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
//"navigationBarTitleText": "uni-app"
"app-plus":{
"scrollIndicator":"none",//隱藏滾動條
//標題樣式
"titleNView":{
//搜索框配置
"searchInput":{
"align":"center",
"backgroundColor":"#F7F7F7",
"borderRadius":"4px",
"placeholder":"提示信息",
//提示信息的顏色
"placeholderColor":"#CCCCCC",
//是否禁止輸入
"disabled":true
},
//配置按鈕
"buttons":[
//左邊
{
"color":"#FF9619",
//按鈕按下的顏色
"colorPressed":"#BBBBBB",
"float":"left",
"fontSize":"22px",
"fontSrc":"/static/font/icon.ttf",
"text": "\ue603"
},
//右邊
{
"color":"#000000",
"colorPressed":"#BBBBBB",
"float":"right",
"fontSize":"22px",
"fontSrc":"/static/font/icon.ttf",
"text": "\ue672"
}
]
}
}
}
}
,{
"path" : "pages/news/news",
"style" : {}
}
,{
"path" : "pages/paper/paper",
"style" : {}
}
,{
"path" : "pages/home/home",
"style" : {}
}
],
/* 全局樣式 */
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "love-magicjuren",
"navigationBarBackgroundColor": "#ffffff",
"backgroundColor": "#ffffff"
},
/* 導航欄 */
"tabBar":{
"color":"#8a8a8a",
"selectedColor":"#333333",
"list":[
{
"pagePath":"pages/index/index",
"iconPath":"static/tabBar/index.png",
"selectedIconPath":"static/tabBar/indexcd.png",
"text":"首頁"
},
{
"pagePath":"pages/news/news",
"iconPath":"static/tabBar/news.png",
"selectedIconPath":"static/tabBar/newscd.png",
"text":"資訊"
},
{
"pagePath":"pages/paper/paper",
"iconPath":"static/tabBar/page.png",
"selectedIconPath":"static/tabBar/pagecd.png",
"text":"聊天"
},
{
"pagePath":"pages/home/home",
"iconPath":"static/tabBar/me.png",
"selectedIconPath":"static/tabBar/mecd.png",
"text":"我的"
}
]
}
}