app.json文件在后臺(tái)是看不到的,是在后臺(tái)打包的時(shí)候動(dòng)態(tài)生成的,是根據(jù)后臺(tái)的導(dǎo)航、頂部導(dǎo)航和底部導(dǎo)航的設(shè)置生成的文件。
app.json需要用開發(fā)者工具打開才能看到。
1、pages頁面路徑列表
"pages": [
"pages/index/index",? ? ? ? ? ? ? ? ? ? ? ? 首頁
"pages/index/list_product",? ? ? ? ? ? ? 產(chǎn)品列表
"pages/index/index_product",? ? ? ? ? 產(chǎn)品中心
"pages/index/index_article",? ? ? ? ? ? ?文章中心
"pages/index/info_product",? ? ? ? ? ? ?產(chǎn)品詳情
"pages/index/list_article",? ? ? ? ? ? ? ? ?文章列表
"pages/index/info_article",? ? ? ? ? ? ? ?文章詳情
"pages/index/page",? ? ? ? ? ? ? ? ? ? ? ? ?單頁面
"pages/index/page_8",? ? ? ? ? ? ? ? ? ? ?自定義頁面,和page類似
"pages/index/solution",? ? ? ? ? ? ? ? ? ? 自定義頁面,解決方案
"pages/index/ask"? ? ? ? ? ? ? ? ? ? ? ? ? ? 自定義頁面,在線留言
]
2、window全局的默認(rèn)窗口表現(xiàn)
"window": {
"navigationBarBackgroundColor": "#ffffff",? ? ? ? ? ??頂部標(biāo)題欄背景顏色
"navigationBarTitleText": "興邦科技小程序",? ? ? ? ? ??頂部標(biāo)題欄 標(biāo)題文字內(nèi)容
"navigationBarTextStyle": "black",? ? ? ? ? ? ? ? ? ? ? ? ??頂部標(biāo)題欄標(biāo)題顏色
"backgroundTextStyle": "black",? ? ? ? ? ? ? ? ? ? ? ? ? ? ?下拉 loading 的樣式,僅支持 dark / light,默認(rèn)值:dark
"enablePullDownRefresh": false
}
3、底部 tab 欄的表現(xiàn),即底部導(dǎo)航
"tabBar": {
"color": "#ffffff",? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 底部導(dǎo)航默認(rèn)文字顏色
"selectedColor": "#000000",? ? ? ? ? ? ? ?底部導(dǎo)航選中時(shí)文字顏色
"borderStyle": "black",? ? ? ? ? ? ? ? ? ? ? ??底部導(dǎo)航邊框顏色
"backgroundColor": "#C00;",? ? ? ? ? ? ??底部導(dǎo)航背景顏色
"list": [{
"pagePath": "pages/index/index",? ? ? ? ? ? ? ? ? ? ? ? ? ?底部導(dǎo)航首頁代碼路徑
"iconPath": "images/index_img.png",? ? ? ? ? ? ? ? ? ? ? 底部導(dǎo)航首頁默認(rèn)顯示的圖標(biāo)
"selectedIconPath": "images/index_img.png",? ? ? ??底部導(dǎo)航首頁選中時(shí)顯示的圖標(biāo)
"text": "首頁"? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 底部導(dǎo)航首頁顯示的文字
}, {
"pagePath": "pages/index/index_product",? ? ? ? ? ? ? ??底部導(dǎo)航產(chǎn)品中心代碼路徑
"iconPath": "images/product_footer.png",? ? ? ? ? ? ? ? ?底部導(dǎo)航產(chǎn)品中心默認(rèn)顯示的圖標(biāo)
"selectedIconPath": "images/product_footer.png",? ? ?底部導(dǎo)航產(chǎn)品中心選中時(shí)顯示的圖標(biāo)
"text": "產(chǎn)品中心"? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??底部導(dǎo)航產(chǎn)品中心顯示的文字
}, {
"pagePath": "pages/index/index_article",
"iconPath": "images/news_footer.png",
"selectedIconPath": "images/news_footer.png",
"text": "新聞中心"
},{
"pagePath": "pages/index/solution",
"iconPath": "images/index_service.png",
"selectedIconPath": "images/index_service.png",
"text": "解決方案"
}, {
"pagePath": "pages/index/ask",
"iconPath": "images/message_footer.png",
"selectedIconPath": "images/message_footer.png",
"text": "在線留言"
}]
}