app.json 1.5 KB

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