pages.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/home/home",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "",
  8. "enablePullDownRefresh": false,
  9. "navigationStyle": "custom"
  10. }
  11. },
  12. {
  13. "path" : "pages/login/login",
  14. "style" :
  15. {
  16. "navigationBarTitleText": "",
  17. "navigationStyle": "custom"
  18. }
  19. },
  20. {
  21. "path" : "pages/login/register",
  22. "style" :
  23. {
  24. "navigationBarTitleText": "注册"
  25. }
  26. },
  27. {
  28. "path" : "pages/login/forget",
  29. "style" :
  30. {
  31. "navigationBarTitleText": ""
  32. }
  33. },
  34. {
  35. "path" : "pages/login/mobileLogin",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "手机号快捷登录"
  39. }
  40. },
  41. {
  42. "path" : "pages/mine/mine",
  43. "style" :
  44. {
  45. "navigationBarTitleText": ""
  46. }
  47. },
  48. {
  49. "path" : "pages/mang/mang",
  50. "style" :
  51. {
  52. "navigationBarTitleText": "",
  53. "enablePullDownRefresh": false,
  54. "navigationStyle": "custom"
  55. }
  56. },
  57. {
  58. "path" : "pages/address/address",
  59. "style" :
  60. {
  61. "navigationBarTitleText": "地址管理",
  62. "enablePullDownRefresh": false
  63. }
  64. },
  65. {
  66. "path" : "pages/address/addressManage",
  67. "style" :
  68. {
  69. "navigationBarTitleText": "地址管理",
  70. "enablePullDownRefresh": false
  71. }
  72. }
  73. ,{
  74. "path" : "pages/mang/detail",
  75. "style" :
  76. {
  77. "navigationBarTitleText": "盲盒详情",
  78. "enablePullDownRefresh": false
  79. }
  80. }
  81. ],
  82. "tabBar": {
  83. "color": "#999999",
  84. "selectedColor": "#92B99C",
  85. "backgroundColor":"#ffffff",
  86. "list": [
  87. {
  88. "pagePath": "pages/home/home",
  89. "iconPath": "static/tab/home.png",
  90. "selectedIconPath": "static/tab/home-full.png",
  91. "text": "首页"
  92. },
  93. {
  94. "pagePath": "pages/mang/mang",
  95. "iconPath": "static/tab/mang.png",
  96. "selectedIconPath": "static/tab/mang-full.png",
  97. "text": "盲盒"
  98. },
  99. // {
  100. // "pagePath": "pages/order/order",
  101. // "iconPath": "static/tab/order.png",
  102. // "selectedIconPath": "static/tab/order-full.png",
  103. // "text": "订单"
  104. // },
  105. {
  106. "pagePath": "pages/mine/mine",
  107. "iconPath": "static/tab/mine.png",
  108. "selectedIconPath": "static/tab/mine-full.png",
  109. "text": "我的"
  110. }
  111. ]
  112. },
  113. "globalStyle": {
  114. "navigationBarTextStyle": "black",
  115. "navigationBarTitleText": "盲go",
  116. "navigationBarBackgroundColor": "#FFFFFF",
  117. "backgroundColor": "#FFFFFF"
  118. },
  119. "uniIdRouter": {}
  120. }