app.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/resource/index",
  5. "pages/order/index",
  6. "pages/my/index"
  7. ],
  8. "subpackages": [{
  9. "root": "userLogin",
  10. "pages": [
  11. "pages/login/index",
  12. "pages/register/index",
  13. "pages/xieyi/index",
  14. "pages/zhengce/index",
  15. "pages/about/index"
  16. ]
  17. },
  18. {
  19. "root": "userOrder",
  20. "pages": [
  21. "pages/continue/index",
  22. "pages/order-details/index",
  23. "pages/resource-details/index",
  24. "pages/resource-img/index",
  25. "pages/cengban-url/index"
  26. ]
  27. }
  28. ],
  29. "tabBar": {
  30. "color": "#6e6d6b",
  31. "selectedColor": "#e64340",
  32. "borderStyle": "white",
  33. "backgroundColor": "#fff",
  34. "custom": true,
  35. "list": [{
  36. "pagePath": "pages/index/index",
  37. "iconPath": "/images/nav/home-off.png",
  38. "selectedIconPath": "/images/nav/home-on.png",
  39. "text": "首页"
  40. },
  41. {
  42. "pagePath": "pages/resource/index",
  43. "iconPath": "/images/nav/fl-off.png",
  44. "selectedIconPath": "/images/nav/fl-on.png",
  45. "text": "会务资源"
  46. },
  47. {
  48. "pagePath": "pages/order/index",
  49. "iconPath": "/images/nav/cart-off.png",
  50. "selectedIconPath": "/images/nav/cart-on.png",
  51. "text": "订单"
  52. },
  53. {
  54. "pagePath": "pages/my/index",
  55. "iconPath": "/images/nav/my-off.png",
  56. "selectedIconPath": "/images/nav/my-on.png",
  57. "text": "我的"
  58. }
  59. ]
  60. },
  61. "window": {
  62. "backgroundTextStyle": "light",
  63. "navigationBarBackgroundColor": "#fff",
  64. "navigationBarTitleText": "Weixin",
  65. "navigationBarTextStyle": "black"
  66. },
  67. "style": "v2",
  68. "sitemapLocation": "sitemap.json",
  69. "usingComponents": {
  70. "popup-modal": "/components/popup-modal/index",
  71. "logout-show": "/components/logout-show/index",
  72. "van-icon": "@vant/weapp/icon/index",
  73. "van-button": "@vant/weapp/button/index",
  74. "van-cell": "@vant/weapp/cell/index",
  75. "van-field": "@vant/weapp/field/index",
  76. "van-empty": "@vant/weapp/empty/index",
  77. "van-sticky": "@vant/weapp/sticky/index",
  78. "van-image": "@vant/weapp/image/index",
  79. "van-tab": "@vant/weapp/tab/index",
  80. "van-tabs": "@vant/weapp/tabs/index",
  81. "van-row": "@vant/weapp/row/index",
  82. "van-col": "@vant/weapp/col/index",
  83. "van-nav-bar": "@vant/weapp/nav-bar/index",
  84. "van-skeleton": "@vant/weapp/skeleton/index"
  85. },
  86. "requiredPrivateInfos": ["getLocation"],
  87. "permission": {
  88. "scope.userLocation": {
  89. "desc": "将获取你的具体位置信息,用于更准确匹配你的提单需求"
  90. }
  91. },
  92. "networkTimeout": {
  93. "request": 10000,
  94. "downloadFile": 10000
  95. },
  96. "debug": false
  97. }