pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/goods/goodList/goodList",
  13. "style": {
  14. "navigationBarTitleText": "全部商品",
  15. "navigationStyle": "custom",
  16. "enablePullDownRefresh": true,
  17. "onReachBottomDistance": 150
  18. }
  19. },
  20. {
  21. "path": "pages/login/login",
  22. "style": {
  23. "navigationBarTitleText": "公司信息",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path": "pages/my/my",
  29. "style": {
  30. "navigationBarTitleText": "",
  31. "navigationStyle": "custom",
  32. "enablePullDownRefresh": false
  33. }
  34. },
  35. {
  36. "path": "pages/my/myOrder/myOrder",
  37. "style": {
  38. "navigationBarTitleText": "我的订单",
  39. "enablePullDownRefresh": false,
  40. "onReachBottomDistance": 150
  41. }
  42. },
  43. {
  44. "path": "pages/my/myOrderDetail/myOrderDetail",
  45. "style": {
  46. "navigationBarTitleText": "",
  47. "enablePullDownRefresh": false
  48. }
  49. },
  50. {
  51. "path": "pages/goods/goodSearch/goodSearch",
  52. "style": {
  53. "navigationBarTitleText": "搜索",
  54. "enablePullDownRefresh": false,
  55. "navigationBarBackgroundColor": "#ffffff"
  56. }
  57. },
  58. {
  59. "path": "pages/goods/orderOK/orderOK",
  60. "style": {
  61. "navigationBarTitleText": "订单确认",
  62. "enablePullDownRefresh": false
  63. }
  64. },
  65. {
  66. "path": "pages/goods/orderOK/index",
  67. "style": {
  68. "navigationBarTitleText": "",
  69. "enablePullDownRefresh": false
  70. }
  71. },
  72. {
  73. "path": "pages/goods/goodDetail/goodDetail",
  74. "style": {
  75. "navigationBarTitleText": "商品详情",
  76. "enablePullDownRefresh": false
  77. }
  78. }
  79. ],
  80. "tabBar": {
  81. "list": [{
  82. "pagePath": "pages/goods/goodList/goodList",
  83. "text": "首页",
  84. "iconPath": "./static/home.png",
  85. "selectedIconPath": "./static/home_cur.png",
  86. "style": {
  87. "onReachBottomDistance": 150,
  88. "enablePullDownRefresh": true
  89. }
  90. },
  91. {
  92. "pagePath": "pages/my/my",
  93. "text": "我的",
  94. "iconPath": "./static/my.png",
  95. "selectedIconPath": "./static/my_cur.png"
  96. }
  97. ]
  98. },
  99. "globalStyle": {
  100. "navigationBarTextStyle": "black",
  101. "navigationBarTitleText": "uni-app",
  102. "navigationBarBackgroundColor": "#fff",
  103. "backgroundColor": "#F8F8F8"
  104. },
  105. "uniIdRouter": {}
  106. }