pages.json 574 B

123456789101112131415161718192021222324
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/Index", // 首页
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "navigationStyle": "custom",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/store/StoreList",
  13. "style": {
  14. "navigationBarTitleText": "网点列表"
  15. }
  16. }
  17. ],
  18. "globalStyle": {
  19. "navigationBarTextStyle": "black",
  20. "navigationBarTitleText": "uni-app",
  21. "navigationBarBackgroundColor": "#F8F8F8",
  22. "backgroundColor": "#F8F8F8"
  23. }
  24. }