app.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index",
  5. "pages/commodity/index",
  6. "pages/shoppingCart/index",
  7. "pages/detail/index",
  8. "pages/order/index",
  9. "pages/distribution/index",
  10. "pages/distributionShop/index"
  11. ],
  12. "subPackages": [
  13. {
  14. "root": "loginPages",
  15. "pages": [
  16. "addressList/index",
  17. "addaddress/index",
  18. "evaluate/index",
  19. "addEvalute/index",
  20. "collect/index"
  21. ]
  22. },
  23. {
  24. "root": "detailPages",
  25. "pages": [
  26. "evaluate/index"
  27. ]
  28. },
  29. {
  30. "root": "commodityPages",
  31. "pages": [
  32. "search/index"
  33. ]
  34. },
  35. {
  36. "root": "indexPages",
  37. "pages": [
  38. "pay/index"
  39. ]
  40. }
  41. ],
  42. "window": {
  43. "navigationBarTextStyle": "white",
  44. "navigationBarTitleText": "",
  45. "navigationStyle": "custom",
  46. "navigationBarBackgroundColor": "#F8F8F8",
  47. "backgroundColor": "#F8F8F8"
  48. },
  49. "tabBar": {
  50. "custom": true,
  51. "list": [
  52. {
  53. "pagePath": "pages/index/index",
  54. "text": "首页"
  55. },
  56. {
  57. "pagePath": "pages/commodity/index",
  58. "text": "商品"
  59. },
  60. {
  61. "pagePath": "pages/shoppingCart/index",
  62. "text": "购物车"
  63. },
  64. {
  65. "pagePath": "pages/login/index",
  66. "text": "我的"
  67. }
  68. ]
  69. },
  70. "preloadRule": {
  71. "pages/index/index": {
  72. "network": "all",
  73. "packages": [
  74. "indexPages"
  75. ]
  76. },
  77. "pages/login/index": {
  78. "network": "all",
  79. "packages": [
  80. "loginPages"
  81. ]
  82. },
  83. "pages/detail/index": {
  84. "network": "all",
  85. "packages": [
  86. "detailPages"
  87. ]
  88. },
  89. "pages/commodity/index": {
  90. "network": "all",
  91. "packages": [
  92. "commodityPages"
  93. ]
  94. }
  95. },
  96. "permission": {
  97. "scope.userLocation": {
  98. "desc": "收货地址使用"
  99. }
  100. },
  101. "usingComponents": {}
  102. }