pages.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. }
  55. ],
  56. "globalStyle": {
  57. "navigationBarTextStyle": "white",
  58. "navigationBarTitleText": "黑马优购",
  59. "navigationBarBackgroundColor": "#C00000",
  60. "backgroundColor": "#FFFFFF"
  61. },
  62. "tabBar": {
  63. "selectedColor": "#C00000",
  64. "list": [
  65. {
  66. "pagePath": "pages/home/home",
  67. "text": "首页",
  68. "iconPath": "static/tab_icons/home.png",
  69. "selectedIconPath": "static/tab_icons/home-active.png"
  70. },
  71. {
  72. "pagePath": "pages/cate/cate",
  73. "text": "分类",
  74. "iconPath": "static/tab_icons/cate.png",
  75. "selectedIconPath": "static/tab_icons/cate-active.png"
  76. },
  77. {
  78. "pagePath": "pages/cart/cart",
  79. "text": "购物车",
  80. "iconPath": "static/tab_icons/cart.png",
  81. "selectedIconPath": "static/tab_icons/cart-active.png"
  82. },
  83. {
  84. "pagePath": "pages/my/my",
  85. "text": "我的",
  86. "iconPath": "static/tab_icons/my.png",
  87. "selectedIconPath": "static/tab_icons/my-active.png"
  88. }
  89. ]
  90. }
  91. }