app.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "collect/index",
  19. "pricepoint/index"
  20. ]
  21. },
  22. {
  23. "root": "commodityPages",
  24. "pages": [
  25. "search/index"
  26. ]
  27. },
  28. {
  29. "root": "indexPages",
  30. "pages": [
  31. "pay/index"
  32. ]
  33. }
  34. ],
  35. "window": {
  36. "navigationBarTextStyle": "white",
  37. "navigationBarTitleText": "",
  38. "navigationStyle": "custom",
  39. "navigationBarBackgroundColor": "#F8F8F8",
  40. "backgroundColor": "#F8F8F8"
  41. },
  42. "tabBar": {
  43. "custom": true,
  44. "list": [
  45. {
  46. "pagePath": "pages/index/index",
  47. "text": "首页"
  48. },
  49. {
  50. "pagePath": "pages/commodity/index",
  51. "text": "商品"
  52. },
  53. {
  54. "pagePath": "pages/shoppingCart/index",
  55. "text": "购物车"
  56. },
  57. {
  58. "pagePath": "pages/login/index",
  59. "text": "我的"
  60. }
  61. ]
  62. },
  63. "preloadRule": {
  64. "pages/index/index": {
  65. "network": "all",
  66. "packages": [
  67. "indexPages"
  68. ]
  69. },
  70. "pages/login/index": {
  71. "network": "all",
  72. "packages": [
  73. "loginPages"
  74. ]
  75. },
  76. "pages/commodity/index": {
  77. "network": "all",
  78. "packages": [
  79. "commodityPages"
  80. ]
  81. }
  82. },
  83. "permission": {
  84. "scope.userLocation": {
  85. "desc": "收货地址使用"
  86. }
  87. },
  88. "lazyCodeLoading": "requiredComponents",
  89. "usingComponents": {}
  90. }