app.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/login/index",
  5. "pages/scheduling/index",
  6. "pages/activity/index",
  7. "pages/activity/add",
  8. "pages/activity/history",
  9. "pages/activity/success",
  10. "pages/activity/details",
  11. "pages/scheduling/add",
  12. "pages/index/realname",
  13. "pages/student/index",
  14. "pages/student/details",
  15. "pages/mine/index",
  16. "pages/mine/record",
  17. "pages/mine/notice"
  18. ],
  19. "subPackages": [],
  20. "window": {
  21. "navigationBarTextStyle": "black",
  22. "navigationBarTitleText": "智慧导师预约系统",
  23. "navigationBarBackgroundColor": "#FFFFFF",
  24. "backgroundColor": "#FFFFFF"
  25. },
  26. "tabBar": {
  27. "color": "#909399",
  28. "selectedColor": "#303133",
  29. "backgroundColor": "#FFFFFF",
  30. "borderStyle": "black",
  31. "navigationStyle": "custom",
  32. "list": [
  33. {
  34. "pagePath": "pages/index/index",
  35. "iconPath": "static/images/home.png",
  36. "selectedIconPath": "static/images/home-fill.png",
  37. "text": "首页"
  38. },
  39. {
  40. "pagePath": "pages/scheduling/index",
  41. "iconPath": "static/images/scheduling.png",
  42. "selectedIconPath": "static/images/scheduling-fill.png",
  43. "text": "工作"
  44. },
  45. {
  46. "pagePath": "pages/student/index",
  47. "iconPath": "static/images/student.png",
  48. "selectedIconPath": "static/images/student-fill.png",
  49. "text": "学生"
  50. },
  51. {
  52. "pagePath": "pages/activity/index",
  53. "iconPath": "static/images/active.png",
  54. "selectedIconPath": "static/images/active-fill.png",
  55. "text": "活动"
  56. },
  57. {
  58. "pagePath": "pages/mine/index",
  59. "iconPath": "static/images/mine.png",
  60. "selectedIconPath": "static/images/mine-fill.png",
  61. "text": "我的"
  62. }
  63. ]
  64. },
  65. "usingComponents": {},
  66. "sitemapLocation": "sitemap.json"
  67. }