| 123456789101112131415161718192021222324 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- // "navigationBarTitleText": "食堂动态监测"
- }
- }, {
- "path": "pages/second/second",
- "style": {
- // "navigationBarTitleText": "食堂动态监测",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "食堂动态监测",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom"
- }
- }
|