這只是個人在使用的過程中做的簡單記錄,詳細的配置信息可以直接查看官方文檔 https://uniapp.dcloud.io/collocation/pages
{ // 主包 "pages": [ { // path:頁面路徑 "path": "pages/tabBar/component/component", // 頁面相關配置 "style": { "navigationBarTitleText": "內置組件", // 頁首標簽名 "app-plus": { // 。。。 "bounce": "vertical", "titleNView": { "buttons": [{ "text": "\ue534", "fontSrc": "/static/uni.ttf", "fontSize": "22px", "color": "#FFFFFF" }] } } } }, /// 下邊的#ifdef,暫時還沒有弄明白 // #ifdef H5 || APP-PLUS { "path": "pages/about/about", "style": { "navigationBarTitleText": "關於" } }, // #endif ], // 分包 "subPackages": [ { "root": "pages/API", "pages": [ { "path": "subnvue/subnvue", "style": {} }, ] }, ], // 公共樣式 "globalStyle": { "navigationBarTextStyle": "white", "navigationBarTitleText": "Hello uniapp", "navigationBarBackgroundColor": "#007AFF", "backgroundColor": "#F8F8F8", "backgroundColorTop": "#F4F5F6", "backgroundColorBottom": "#F4F5F6", "app-plus": { "animationType": "pop-in" } }, // 列表按鈕 "tabBar": { "color": "#7A7E83", "selectedColor": "#007AFF", "borderStyle": "black", "backgroundColor": "#F8F8F8", "list": [ { "pagePath": "pages/tabBar/component/component", "iconPath": "static/component.png", "selectedIconPath": "static/componentHL.png", "text": "內置組件" }, ] } }