app.json 1.9 KB

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