pages.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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/user/accounts",
  67. "style": {
  68. "navigationBarTitleText": "我的佣金",
  69. "navigationBarBackgroundColor":"#F1F1F1",
  70. "navigationStyle": "custom"
  71. }
  72. },
  73. {
  74. "path": "pages/story/story",
  75. "style": {
  76. "navigationBarTitleText": "品牌中心",
  77. "navigationBarBackgroundColor":"#FFFFFF",
  78. "navigationBarTextStyle":"black"
  79. }
  80. }
  81. ],
  82. "tabBar": {
  83. "color": "#C0C4CC",
  84. "selectedColor": "#5DBC7C",
  85. "borderStyle": "black",
  86. "backgroundColor": "#ffffff",
  87. "list": [{
  88. "pagePath": "pages/index/index",
  89. "iconPath": "static/tabBar/tab-home.png",
  90. "selectedIconPath": "static/tabBar/tab-home-current.png",
  91. "text": "首页"
  92. },
  93. {
  94. "pagePath": "pages/category/category",
  95. "iconPath": "static/tabBar/tab-cate.png",
  96. "selectedIconPath": "static/tabBar/tab-cate-current.png",
  97. "text": "分类"
  98. },
  99. {
  100. "pagePath": "pages/story/story",
  101. "iconPath": "static/tabBar/tab-cart.png",
  102. "selectedIconPath": "static/tabBar/tab-cart-current.png",
  103. "text": "品牌故事"
  104. },
  105. {
  106. "pagePath": "pages/cart/cart",
  107. "iconPath": "static/tabBar/tab-cart.png",
  108. "selectedIconPath": "static/tabBar/tab-cart-current.png",
  109. "text": "购物车"
  110. },
  111. {
  112. "pagePath": "pages/user/user",
  113. "iconPath": "static/tabBar/tab-my.png",
  114. "selectedIconPath": "static/tabBar/tab-my-current.png",
  115. "text": "我的"
  116. }
  117. ]
  118. }
  119. }