app.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/home/index",
  5. "pages/teacher/index",
  6. "pages/my/index"
  7. ],
  8. "subPackages": [
  9. {
  10. "root": "pagesHome",
  11. "pages": [
  12. "agree/index",
  13. "login/index"
  14. ]
  15. }
  16. ],
  17. "window": {
  18. "navigationBarTextStyle": "white",
  19. "navigationBarTitleText": "学吧",
  20. "navigationBarBackgroundColor": "#32C8DA",
  21. "backgroundColor": "#ffffff"
  22. },
  23. "tabBar": {
  24. "color": "8a8a8a",
  25. "selectedColor": "#262D3D",
  26. "borderStyle": "black",
  27. "backgroundColor": "#ffffff",
  28. "list": [
  29. {
  30. "pagePath": "pages/home/index",
  31. "iconPath": "static/homeHL.png",
  32. "selectedIconPath": "static/home.png",
  33. "text": "首页"
  34. },
  35. {
  36. "pagePath": "pages/teacher/index",
  37. "iconPath": "static/teacherHL.png",
  38. "selectedIconPath": "static/teacher.png",
  39. "text": "教师"
  40. },
  41. {
  42. "pagePath": "pages/my/index",
  43. "iconPath": "static/myHL.png",
  44. "selectedIconPath": "static/my.png",
  45. "text": "我的"
  46. }
  47. ]
  48. },
  49. "permission": {
  50. "scope.userLocation": {
  51. "desc": "定位当前位置,选在收获地址"
  52. }
  53. },
  54. "requiredPrivateInfos": [
  55. "chooseAddress",
  56. "chooseLocation"
  57. ],
  58. "lazyCodeLoading": "requiredComponents",
  59. "usingComponents": {}
  60. }