pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "navigationBarTitleText": "首页"
  6. }
  7. }, {
  8. "path": "pages/login/login",
  9. "style": {
  10. "navigationBarTitleText": "登录"
  11. }
  12. },
  13. {
  14. "path": "pages/order/order",
  15. "style": {
  16. "navigationBarTitleText": "工单"
  17. }
  18. },
  19. {
  20. "path": "pages/my/my",
  21. "style": {
  22. "navigationBarTitleText": "我的"
  23. }
  24. },
  25. {
  26. "path": "pages/message/message",
  27. "style": {
  28. "navigationBarTitleText": "消息"
  29. }
  30. },
  31. {
  32. "path": "pages/house/house",
  33. "style": {
  34. "navigationBarTitleText": "房源列表"
  35. }
  36. },
  37. {
  38. "path": "pages/houseDetail/houseDetail",
  39. "style": {
  40. "navigationBarTitleText": "房源详情"
  41. }
  42. }
  43. ],
  44. "tabBar": {
  45. "color": "#3a3a3a",
  46. "selectedColor": "#3371FF",
  47. "list": [{
  48. "text": "首页",
  49. "pagePath": "pages/index/index",
  50. "iconPath": "static/image/tabbar/index.png",
  51. "selectedIconPath": "static/image/tabbar/index-active.png"
  52. },
  53. {
  54. "text": "工单",
  55. "pagePath": "pages/order/order",
  56. "iconPath": "static/image/tabbar/order.png",
  57. "selectedIconPath": "static/image/tabbar/order-active.png"
  58. },
  59. {
  60. "text": "通知",
  61. "pagePath": "pages/message/message",
  62. "iconPath": "static/image/tabbar/message.png",
  63. "selectedIconPath": "static/image/tabbar/message-active.png"
  64. },
  65. {
  66. "text": "我的",
  67. "pagePath": "pages/my/my",
  68. "iconPath": "static/image/tabbar/my.png",
  69. "selectedIconPath": "static/image/tabbar/my-active.png"
  70. }
  71. ]
  72. },
  73. "globalStyle": {
  74. "navigationBarTextStyle": "black",
  75. "navigationBarTitleText": "有极物业",
  76. "navigationBarBackgroundColor": "#ffffff",
  77. "backgroundColor": "#F8F8F8"
  78. }
  79. }