pages.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "首页"
  6. }
  7. },
  8. {
  9. "path": "pages/eventList/index",
  10. "style": {
  11. "navigationBarTitleText": "事件列表"
  12. }
  13. },
  14. {
  15. "path": "pages/my/index",
  16. "style": {
  17. "navigationBarTitleText": "我的"
  18. }
  19. },
  20. {
  21. "path": "pages/poleList/index",
  22. "style": {
  23. "navigationBarTitleText": "灯杆列表"
  24. }
  25. },
  26. {
  27. "path": "pages/poleDetail/index",
  28. "style": {
  29. "navigationBarTitleText": "灯杆详情"
  30. }
  31. },
  32. {
  33. "path": "pages/eventDetail/index",
  34. "style": {
  35. "navigationBarTitleText": "事件详情"
  36. }
  37. }
  38. ],
  39. "tabBar": {
  40. "color": "#999999",
  41. "selectedColor": "#ff0000",
  42. "backgroundColor": "#ffffff",
  43. "borderStyle": "black",
  44. "list": [
  45. {
  46. "pagePath": "pages/index/index",
  47. "text": "首页",
  48. "iconPath": "/static/uni.png",
  49. "selectedIconPath": "/static/uni.png"
  50. }
  51. // {
  52. // "pagePath": "pages/my/index",
  53. // "text": "我的",
  54. // "iconPath": "/static/uni.png",
  55. // "selectedIconPath": "/static/uni.png"
  56. // },
  57. ]
  58. },
  59. "globalStyle": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarTitleText": "uni-app",
  62. "navigationBarBackgroundColor": "#F8F8F8",
  63. "backgroundColor": "#F8F8F8",
  64. "app-plus": {
  65. "background": "#efeff4"
  66. }
  67. }
  68. }