app.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/news/index",
  5. "pages/user/index",
  6. "pages/login/index"
  7. ],
  8. "subPackages": [
  9. {
  10. "root": "pagesClass",
  11. "pages": [
  12. "extraLessonsForm",
  13. "extraLessonsStudentList",
  14. "classList",
  15. "addClassForm",
  16. "classDetail",
  17. "courseForm",
  18. "signForm",
  19. "signStudentList",
  20. "timetable"
  21. ]
  22. },
  23. {
  24. "root": "pagesMain",
  25. "pages": [
  26. "evaluateList",
  27. "evaluateDetail",
  28. "extraLessonsList",
  29. "leaveLessonsList",
  30. "ratioRank",
  31. "renewList",
  32. "signList",
  33. "studentInfo",
  34. "communicateForm"
  35. ]
  36. }
  37. ],
  38. "window": {
  39. "navigationStyle": "default",
  40. "navigationBarTextStyle": "black",
  41. "navigationBarTitleText": "星火纵横销售端",
  42. "navigationBarBackgroundColor": "#ffffff",
  43. "backgroundColor": "#F8F8F8"
  44. },
  45. "tabBar": {
  46. "borderStyle": "black",
  47. "backgroundColor": "#fff",
  48. "color": "#9A9A9A",
  49. "selectedColor": "#666666",
  50. "list": [
  51. {
  52. "pagePath": "pages/index/index",
  53. "iconPath": "static/images/icon-index.png",
  54. "selectedIconPath": "static/images/icon-index-active.png",
  55. "text": "首页"
  56. },
  57. {
  58. "pagePath": "pages/news/index",
  59. "iconPath": "static/images/icon-news.png",
  60. "selectedIconPath": "static/images/icon-news-active.png",
  61. "text": "消息"
  62. },
  63. {
  64. "pagePath": "pages/user/index",
  65. "iconPath": "static/images/icon-mine.png",
  66. "selectedIconPath": "static/images/icon-mine-active.png",
  67. "text": "个人"
  68. }
  69. ]
  70. },
  71. "runmode": "liberate",
  72. "permission": {
  73. "scope.userLocation": {
  74. "desc": "获取当前区域定位以选取附近场馆"
  75. }
  76. },
  77. "usingComponents": {},
  78. "sitemapLocation": "sitemap.json"
  79. }