pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. }, {
  9. "path": "pages/edu/edu",
  10. "style": {
  11. "navigationBarTitleText": "培训",
  12. "usingComponents": {
  13. "painter": "/wxcomponents/painter/painter"
  14. }
  15. }
  16. }, {
  17. "path": "pages/mine/mine",
  18. "style": {
  19. "navigationBarTitleText": "我的"
  20. }
  21. }
  22. ],
  23. "globalStyle": {
  24. "navigationBarTextStyle": "black",
  25. "navigationBarTitleText": "uni-app",
  26. "navigationBarBackgroundColor": "#F8F8F8",
  27. "backgroundColor": "#F8F8F8"
  28. },
  29. "tabBar": {
  30. "color": "#A0A2BE",
  31. "selectedColor": "#FF4330",
  32. "list": [{
  33. "pagePath": "pages/index/index",
  34. "text": "首页",
  35. "iconPath": "./static/home.png",
  36. "selectedIconPath": "./static/home_check.png"
  37. },
  38. {
  39. "pagePath": "pages/edu/edu",
  40. "text": "培训",
  41. "iconPath": "./static/edu.png",
  42. "selectedIconPath": "./static/edu_check.png"
  43. },
  44. {
  45. "pagePath": "pages/mine/mine",
  46. "text": "我的",
  47. "iconPath": "./static/mine.png",
  48. "selectedIconPath": "./static/mine_check.png"
  49. }
  50. ]
  51. }
  52. }