pages.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "pages": [
  3. {
  4. "path" : "pages/home/home",
  5. "style" :
  6. {
  7. // "navigationBarTitleText": "",
  8. "enablePullDownRefresh": false
  9. }
  10. }
  11. ,{
  12. "path" : "pages/cate/cate",
  13. "style" :
  14. {
  15. "enablePullDownRefresh": false
  16. }
  17. }
  18. ,{
  19. "path" : "pages/cart/cart",
  20. "style" :
  21. {
  22. "enablePullDownRefresh": false
  23. }
  24. }
  25. ,{
  26. "path" : "pages/my/my",
  27. "style" :
  28. {
  29. "enablePullDownRefresh": false
  30. }
  31. }
  32. ],
  33. "subPackages": [
  34. {
  35. "root": "subpkg",
  36. "pages": [
  37. {
  38. "path" : "subpkg/goods_detail/goods_detail",
  39. "style" :
  40. {
  41. "navigationBarTitleText": "",
  42. "enablePullDownRefresh": false
  43. }
  44. },
  45. {
  46. "path" : "subpkg/goods_list/goods_list",
  47. "style" :
  48. {
  49. "navigationBarTitleText": "",
  50. "enablePullDownRefresh": false
  51. }
  52. }
  53. ,{
  54. "path" : "search/search",
  55. "style" :
  56. {
  57. "navigationBarTitleText": "",
  58. "enablePullDownRefresh": false
  59. }
  60. }
  61. ]
  62. }
  63. ],
  64. "globalStyle": {
  65. "navigationBarTextStyle": "white",
  66. "navigationBarTitleText": "黑马优购",
  67. "navigationBarBackgroundColor": "#C00000",
  68. "backgroundColor": "#FFFFFF"
  69. },
  70. "tabBar": {
  71. "selectedColor": "#C00000",
  72. "list": [
  73. {
  74. "pagePath": "pages/home/home",
  75. "text": "首页",
  76. "iconPath": "static/tab_icons/home.png",
  77. "selectedIconPath": "static/tab_icons/home-active.png"
  78. },
  79. {
  80. "pagePath": "pages/cate/cate",
  81. "text": "分类",
  82. "iconPath": "static/tab_icons/cate.png",
  83. "selectedIconPath": "static/tab_icons/cate-active.png"
  84. },
  85. {
  86. "pagePath": "pages/cart/cart",
  87. "text": "购物车",
  88. "iconPath": "static/tab_icons/cart.png",
  89. "selectedIconPath": "static/tab_icons/cart-active.png"
  90. },
  91. {
  92. "pagePath": "pages/my/my",
  93. "text": "我的",
  94. "iconPath": "static/tab_icons/my.png",
  95. "selectedIconPath": "static/tab_icons/my-active.png"
  96. }
  97. ]
  98. }
  99. }