pages.json 641 B

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