app.json 1.6 KB

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