pages.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. "globalStyle": {
  34. "navigationBarTextStyle": "white",
  35. "navigationBarTitleText": "黑马优购",
  36. "navigationBarBackgroundColor": "#C00000",
  37. "backgroundColor": "#FFFFFF"
  38. },
  39. "tabBar": {
  40. "selectedColor": "#C00000",
  41. "list": [
  42. {
  43. "pagePath": "pages/home/home",
  44. "text": "首页",
  45. "iconPath": "static/tab_icons/home.png",
  46. "selectedIconPath": "static/tab_icons/home-active.png"
  47. },
  48. {
  49. "pagePath": "pages/cate/cate",
  50. "text": "分类",
  51. "iconPath": "static/tab_icons/cate.png",
  52. "selectedIconPath": "static/tab_icons/cate-active.png"
  53. },
  54. {
  55. "pagePath": "pages/cart/cart",
  56. "text": "购物车",
  57. "iconPath": "static/tab_icons/cart.png",
  58. "selectedIconPath": "static/tab_icons/cart-active.png"
  59. },
  60. {
  61. "pagePath": "pages/my/my",
  62. "text": "我的",
  63. "iconPath": "static/tab_icons/my.png",
  64. "selectedIconPath": "static/tab_icons/my-active.png"
  65. }
  66. ]
  67. }
  68. }