pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "enablePullDownRefresh": true,
  6. // #ifdef MP
  7. "navigationStyle": "custom",
  8. // #endif
  9. // #ifndef MP
  10. "app-plus": {
  11. "titleNView": {
  12. "type": "transparent",
  13. "searchInput": {
  14. "backgroundColor": "rgba(231, 231, 231,.7)",
  15. "borderRadius": "16px",
  16. "placeholder": "请输入关键字",
  17. "disabled": true,
  18. "placeholderColor": "#606266",
  19. "align": "left"
  20. }
  21. }
  22. },
  23. // #endif
  24. "navigationBarTitleText": "商城首页"
  25. }
  26. },
  27. {
  28. "path": "pages/category/category",
  29. "style": {
  30. // #ifdef APP-PLUS
  31. "navigationStyle": "custom",
  32. // #endif
  33. // #ifndef MP
  34. "app-plus": {
  35. "bounce": "none",
  36. "titleNView": {
  37. "searchInput": {
  38. "backgroundColor": "rgba(231, 231, 231,.7)",
  39. "borderRadius": "16px",
  40. "placeholder": "商品搜索",
  41. "disabled": true,
  42. "placeholderColor": "#606266",
  43. "align": "left"
  44. }
  45. }
  46. },
  47. // #endif
  48. "navigationBarTitleText": "分类",
  49. "navigationBarBackgroundColor":"#FFFFFF"
  50. }
  51. }, {
  52. "path": "pages/cart/cart",
  53. "style": {
  54. "navigationBarTitleText": "购物车",
  55. "navigationBarBackgroundColor":"#FFFFFF",
  56. "navigationBarTextStyle":"black"
  57. }
  58. },
  59. {
  60. "path": "pages/user/user",
  61. "style": {
  62. "navigationBarTitleText": "个人中心"
  63. }
  64. },
  65. {
  66. "path": "pages/story/story",
  67. "style": {
  68. "navigationBarTitleText": "品牌中心",
  69. "navigationBarBackgroundColor":"#FFFFFF",
  70. "navigationBarTextStyle":"black"
  71. }
  72. }
  73. ],
  74. "tabBar": {
  75. "color": "#C0C4CC",
  76. "selectedColor": "#5DBC7C",
  77. "borderStyle": "black",
  78. "backgroundColor": "#ffffff",
  79. "list": [{
  80. "pagePath": "pages/index/index",
  81. "iconPath": "static/tabBar/tab-home.png",
  82. "selectedIconPath": "static/tabBar/tab-home-current.png",
  83. "text": "首页"
  84. },
  85. {
  86. "pagePath": "pages/category/category",
  87. "iconPath": "static/tabBar/tab-cate.png",
  88. "selectedIconPath": "static/tabBar/tab-cate-current.png",
  89. "text": "分类"
  90. },
  91. {
  92. "pagePath": "pages/story/story",
  93. "iconPath": "static/tabBar/tab-cart.png",
  94. "selectedIconPath": "static/tabBar/tab-cart-current.png",
  95. "text": "品牌故事"
  96. },
  97. {
  98. "pagePath": "pages/cart/cart",
  99. "iconPath": "static/tabBar/tab-cart.png",
  100. "selectedIconPath": "static/tabBar/tab-cart-current.png",
  101. "text": "购物车"
  102. },
  103. {
  104. "pagePath": "pages/user/user",
  105. "iconPath": "static/tabBar/tab-my.png",
  106. "selectedIconPath": "static/tabBar/tab-my-current.png",
  107. "text": "我的"
  108. }
  109. ]
  110. }
  111. }