pages.json 1.1 KB

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