pages.json 1023 B

123456789101112131415161718192021222324252627282930313233343536
  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. }
  11. }
  12. ],
  13. "globalStyle": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "uView",
  16. "navigationBarBackgroundColor": "#F8F8F8",
  17. "backgroundColor": "#F8F8F8"
  18. }
  19. // ,"tabBar": {
  20. // "color": "#909399",
  21. // "selectedColor": "#303133",
  22. // "borderStyle": "black",
  23. // "backgroundColor": "#ffffff",
  24. // "list": [{
  25. // "pagePath": "pages/index/index",
  26. // "iconPath": "static/index.png",
  27. // "selectedIconPath": "static/index-selected.png",
  28. // "text": "首页"
  29. // }, {
  30. // "pagePath": "pages/center/index",
  31. // "iconPath": "static/center.png",
  32. // "selectedIconPath": "static/center-selected.png",
  33. // "text": "我"
  34. // }]
  35. // }
  36. }