app.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "pages": ["pages/home/home", "pages/category/index", "pages/cart/index", "pages/usercenter/index"],
  3. "subpackages": [
  4. {
  5. "root": "pages/user",
  6. "name": "user",
  7. "pages": ["person-info/index", "address/list/index", "address/edit/index", "name-edit/index"]
  8. },
  9. {
  10. "root": "pages/goods",
  11. "name": "goods",
  12. "pages": [
  13. "list/index",
  14. "details/index",
  15. "search/index",
  16. "result/index",
  17. "comments/index",
  18. "comments/create/index"
  19. ]
  20. },
  21. {
  22. "root": "pages/order",
  23. "name": "order",
  24. "pages": [
  25. "order-confirm/index",
  26. "receipt/index",
  27. "pay-result/index",
  28. "order-list/index",
  29. "order-detail/index",
  30. "apply-service/index",
  31. "after-service-list/index",
  32. "after-service-detail/index",
  33. "fill-tracking-no/index",
  34. "delivery-detail/index",
  35. "invoice/index"
  36. ]
  37. },
  38. {
  39. "root": "pages/coupon",
  40. "name": "coupon",
  41. "pages": ["coupon-list/index", "coupon-detail/index", "coupon-activity-goods/index"]
  42. },
  43. {
  44. "root": "pages/promotion",
  45. "name": "promotion",
  46. "pages": ["promotion-detail/index"]
  47. }
  48. ],
  49. "tabBar": {
  50. "custom": true,
  51. "color": "#666666",
  52. "selectedColor": "#FF5F15",
  53. "backgroundColor": "#ffffff",
  54. "borderStyle": "black",
  55. "list": [
  56. {
  57. "pagePath": "pages/home/home",
  58. "text": "首页"
  59. },
  60. {
  61. "pagePath": "pages/category/index",
  62. "text": "分类"
  63. },
  64. {
  65. "pagePath": "pages/cart/index",
  66. "text": "购物车"
  67. },
  68. {
  69. "pagePath": "pages/usercenter/index",
  70. "text": "我的"
  71. }
  72. ]
  73. },
  74. "requiredPrivateInfos": ["chooseAddress"],
  75. "lazyCodeLoading": "requiredComponents",
  76. "usingComponents": {},
  77. "window": {
  78. "backgroundTextStyle": "light",
  79. "navigationBarBackgroundColor": "#fff",
  80. "navigationBarTitleText": "Weixin",
  81. "navigationBarTextStyle": "black"
  82. },
  83. "sitemapLocation": "sitemap.json",
  84. "permission": {
  85. "scope.userLocation": {
  86. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  87. }
  88. }
  89. }