app.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "pages": [
  3. "pages/home/index",
  4. "pages/home/category",
  5. "pages/home/shop",
  6. "pages/home/user",
  7. "pages/common/redirect",
  8. "pages/common/webview"
  9. ],
  10. "subPackages": [
  11. {
  12. "root": "pages/user",
  13. "pages": [
  14. "register",
  15. "password"
  16. ]
  17. },
  18. {
  19. "root": "pages/goods",
  20. "pages": [
  21. "detail"
  22. ]
  23. },
  24. {
  25. "root": "pages/pay",
  26. "pages": [
  27. "index"
  28. ]
  29. },
  30. {
  31. "root": "pages/callback",
  32. "pages": [
  33. "index"
  34. ]
  35. },
  36. {
  37. "root": "pages/coupon",
  38. "pages": [
  39. "list"
  40. ]
  41. },
  42. {
  43. "root": "pages/order",
  44. "pages": [
  45. "list",
  46. "detail",
  47. "buy",
  48. "comment"
  49. ]
  50. },
  51. {
  52. "root": "pages/interest",
  53. "pages": [
  54. "invite",
  55. "level"
  56. ]
  57. },
  58. {
  59. "root": "pages/chat",
  60. "pages": [
  61. "index"
  62. ]
  63. }
  64. ],
  65. "window": {
  66. "navigationBarBackgroundColor": "#fff",
  67. "navigationBarTitleText": "花卉宝",
  68. "navigationBarTextStyle": "black"
  69. },
  70. "tabBar": {
  71. "color": "#C0C4CC",
  72. "selectedColor": "#fa436a",
  73. "borderStyle": "black",
  74. "backgroundColor": "#ffffff",
  75. "list": [
  76. {
  77. "pagePath": "pages/home/index",
  78. "iconPath": "static/images/common/home-no.png",
  79. "selectedIconPath": "static/images/common/home-is.png",
  80. "text": "首页"
  81. },
  82. {
  83. "pagePath": "pages/home/category",
  84. "iconPath": "static/images/common/category-no.png",
  85. "selectedIconPath": "static/images/common/category-is.png",
  86. "text": "分类"
  87. },
  88. {
  89. "pagePath": "pages/home/shop",
  90. "iconPath": "static/images/common/shop-no.png",
  91. "selectedIconPath": "static/images/common/shop-is.png",
  92. "text": "门店"
  93. },
  94. {
  95. "pagePath": "pages/home/user",
  96. "iconPath": "static/images/common/user-no.png",
  97. "selectedIconPath": "static/images/common/user-is.png",
  98. "text": "我的"
  99. }
  100. ]
  101. },
  102. "networkTimeout": {
  103. "request": 200000
  104. },
  105. "debug": false,
  106. "permission": {
  107. "scope.userLocation": {
  108. "desc": "请点击确定"
  109. }
  110. },
  111. "usingComponents": {}
  112. }