pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "任务"
  7. }
  8. },
  9. {
  10. "path": "pages/check/index",
  11. "style": {
  12. "navigationBarTitleText": "核查"
  13. }
  14. },
  15. {
  16. "path": "pages/user/user",
  17. "style": {
  18. "navigationBarTitleText": "我的"
  19. }
  20. }
  21. ],
  22. "tabBar": {
  23. "color": "#9799a5",
  24. "selectedColor": "#28B389",
  25. "list": [
  26. {
  27. "text": "任务",
  28. "pagePath": "pages/index/index",
  29. // "enableMap": true,
  30. "iconPath": "static/images/tabBar/home.png",
  31. "selectedIconPath": "static/images/tabBar/home-h.png"
  32. },{
  33. "text": "核查",
  34. "pagePath": "pages/check/index",
  35. "iconPath": "static/images/tabBar/classify.png",
  36. "selectedIconPath": "static/images/tabBar/classify-h.png"
  37. },{
  38. "text": "我的",
  39. "pagePath": "pages/user/user",
  40. "iconPath": "static/images/tabBar/user.png",
  41. "selectedIconPath": "static/images/tabBar/user-h.png"
  42. }
  43. ]
  44. },
  45. "globalStyle": {
  46. "navigationBarTextStyle": "black",
  47. "navigationBarTitleText": "uni-app x",
  48. "navigationBarBackgroundColor": "#F8F8F8",
  49. "backgroundColor": "#F8F8F8"
  50. },
  51. "uniIdRouter": {}
  52. }