pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "pages": [
  3. {
  4. "path" : "pages/tabBar/home/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "首页",
  8. "enablePullDownRefresh": false
  9. }
  10. }
  11. ,{
  12. "path" : "pages/tabBar/message/index",
  13. "style" :
  14. {
  15. "navigationBarTitleText": "消息",
  16. "enablePullDownRefresh": false
  17. }
  18. }
  19. ,{
  20. "path" : "pages/tabBar/mine/index",
  21. "style" :
  22. {
  23. "navigationBarTitleText": "个人中心",
  24. "enablePullDownRefresh": false
  25. }
  26. }
  27. ],
  28. "globalStyle": {
  29. "navigationBarTextStyle": "black",
  30. "navigationBarTitleText": "青泓报修小程序",
  31. "navigationBarBackgroundColor": "#F8F8F8",
  32. "backgroundColor": "#F8F8F8",
  33. "app-plus": {
  34. "background": "#efeff4"
  35. }
  36. },
  37. "tabBar": {
  38. "color": "#7A7E83",
  39. "selectedColor": "#139EFF",
  40. "borderStyle": "black",
  41. "backgroundColor": "#FFFFFF",
  42. "list": [{
  43. "pagePath": "pages/tabBar/home/index",
  44. "iconPath": "static/component.png",
  45. "selectedIconPath": "static/componentHL.png",
  46. "text": "首页"
  47. },
  48. {
  49. "pagePath": "pages/tabBar/message/index",
  50. "iconPath": "static/api.png",
  51. "selectedIconPath": "static/apiHL.png",
  52. "text": "消息"
  53. }, {
  54. "pagePath": "pages/tabBar/mine/index",
  55. "iconPath": "static/template.png",
  56. "selectedIconPath": "static/templateHL.png",
  57. "text": "我的"
  58. }
  59. ]
  60. }
  61. }