app.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. {
  2. "pages": [
  3. "pages/home/recent",
  4. "pages/home/index",
  5. "pages/home/category",
  6. "pages/home/shop",
  7. "pages/home/user",
  8. "pages/home/course",
  9. "common/redirect",
  10. "common/webview",
  11. "pages/class/index",
  12. "pages/class/paySuccess"
  13. ],
  14. "subPackages": [
  15. {
  16. "root": "pages/user",
  17. "pages": [
  18. "register",
  19. "password"
  20. ]
  21. },
  22. {
  23. "root": "pages/goods",
  24. "pages": [
  25. "detail"
  26. ]
  27. },
  28. {
  29. "root": "pages/pay",
  30. "pages": [
  31. "index"
  32. ]
  33. },
  34. {
  35. "root": "pages/callback",
  36. "pages": [
  37. "index",
  38. "success"
  39. ]
  40. },
  41. {
  42. "root": "pages/coupon",
  43. "pages": [
  44. "list"
  45. ]
  46. },
  47. {
  48. "root": "pages/order",
  49. "pages": [
  50. "list",
  51. "detail",
  52. "buy",
  53. "comment"
  54. ]
  55. },
  56. {
  57. "root": "pages/interest",
  58. "pages": [
  59. "invite",
  60. "level"
  61. ]
  62. },
  63. {
  64. "root": "pages/chat",
  65. "pages": [
  66. "index"
  67. ]
  68. }
  69. ],
  70. "window": {
  71. "navigationBarBackgroundColor": "#fff",
  72. "navigationBarTitleText": "花卉宝",
  73. "navigationBarTextStyle": "black"
  74. },
  75. "tabBar": {
  76. "color": "#C0C4CC",
  77. "selectedColor": "#fa436a",
  78. "borderStyle": "black",
  79. "backgroundColor": "#ffffff",
  80. "list": [
  81. {
  82. "pagePath": "pages/home/index",
  83. "iconPath": "static/images/common/home-no.png",
  84. "selectedIconPath": "static/images/common/home-is.png",
  85. "text": "首页"
  86. },
  87. {
  88. "pagePath": "pages/home/category",
  89. "iconPath": "static/images/common/category-no.png",
  90. "selectedIconPath": "static/images/common/category-is.png",
  91. "text": "分类"
  92. },
  93. {
  94. "pagePath": "pages/home/course",
  95. "iconPath": "static/images/common/icon_class.png",
  96. "selectedIconPath": "static/images/common/icon_class_active.png",
  97. "text": "课程"
  98. },
  99. {
  100. "pagePath": "pages/home/shop",
  101. "iconPath": "static/images/common/shop-no.png",
  102. "selectedIconPath": "static/images/common/shop-is.png",
  103. "text": "门店"
  104. },
  105. {
  106. "pagePath": "pages/home/user",
  107. "iconPath": "static/images/common/user-no.png",
  108. "selectedIconPath": "static/images/common/user-is.png",
  109. "text": "我的"
  110. }
  111. ]
  112. },
  113. "permission": {
  114. "scope.userLocation": {
  115. "desc": "获取位置信息后为您提供个性化推荐"
  116. }
  117. },
  118. "usingComponents": {
  119. "tab-bar": "/components/app-tabbar"
  120. }
  121. }