每個小程序頁面也可使用 .json
文件來對本頁面的窗口表現進行配置。頁面中配置項在當前頁面會覆蓋 app.json
的 window
中相同的配置項。頁面配置中只能設置 app.json
中 window
對應的配置項,以決定本頁面的窗口表現,因此無需寫 window
這個屬性。
json
文件內容爲一個 JSON 對象,有如下屬性:小程序
{ "navigationBarBackgroundColor": "#FF4949", "navigationBarTextStyle": "white", "navigationBarTitleText": "微信頁面配置demo", "backgroundColor": "#13CE66", "backgroundTextStyle": "light", "enablePullDownRefresh": true, "backgroundColorTop":"#99A9BF", "onReachBottomDistance":20, "usingComponents": {} }