app.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. ]
  14. },
  15. {
  16. "root": "pagesMy",
  17. "pages": [
  18. "order/index",
  19. "course/index",
  20. "follow/index",
  21. "account/index",
  22. "opinion/index"
  23. ]
  24. }
  25. ],
  26. "window": {
  27. "navigationBarTextStyle": "white",
  28. "navigationBarTitleText": "学吧",
  29. "navigationBarBackgroundColor": "#3c9cff",
  30. "backgroundColor": "#ffffff"
  31. },
  32. "tabBar": {
  33. "color": "8a8a8a",
  34. "selectedColor": "#262D3D",
  35. "borderStyle": "black",
  36. "backgroundColor": "#ffffff",
  37. "list": [
  38. {
  39. "pagePath": "pages/home/index",
  40. "iconPath": "static/homeHL.png",
  41. "selectedIconPath": "static/home.png",
  42. "text": "首页"
  43. },
  44. {
  45. "pagePath": "pages/teacher/index",
  46. "iconPath": "static/teacherHL.png",
  47. "selectedIconPath": "static/teacher.png",
  48. "text": "教师"
  49. },
  50. {
  51. "pagePath": "pages/my/index",
  52. "iconPath": "static/myHL.png",
  53. "selectedIconPath": "static/my.png",
  54. "text": "我的"
  55. }
  56. ]
  57. },
  58. "permission": {
  59. "scope.userLocation": {
  60. "desc": "定位当前位置,选在收获地址"
  61. }
  62. },
  63. "requiredPrivateInfos": [
  64. "chooseAddress",
  65. "chooseLocation"
  66. ],
  67. "lazyCodeLoading": "requiredComponents",
  68. "usingComponents": {}
  69. }