app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "plugins": {},
  3. "pages": [
  4. "pages/leaveRecord/leaveRecord",
  5. "pages/leave/leave",
  6. "pages/index/index",
  7. "pages/doTask/doTask",
  8. "pages/task/task",
  9. "pages/taskDetail/taskDetail",
  10. "pages/schedule/schedule",
  11. "pages/piano/piano",
  12. "pages/login/login",
  13. "pages/makePiano/makePiano",
  14. "pages/myself/myself",
  15. "pages/lessons/lessons"
  16. ],
  17. "window": {
  18. "backgroundTextStyle": "dark",
  19. "navigationBarBackgroundColor": "#fff",
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "艾克斯朗学生端"
  22. },
  23. "networkTimeout": {
  24. "request": 10000,
  25. "connectSocket": 20000,
  26. "uploadFile": 20000,
  27. "downloadFile": 20000
  28. },
  29. "style": "v2",
  30. "sitemapLocation": "sitemap.json",
  31. "permission": {
  32. "scope.userLocation": {
  33. "desc": "你的位置信息将用于小程序位置接口的效果展示"
  34. }
  35. },
  36. "tabBar": {
  37. "color": "#bfbfbf",
  38. "selectedColor": "#d81e06",
  39. "list": [
  40. {
  41. "selectedIconPath": "images/cur-index.png",
  42. "iconPath": "images/index.png",
  43. "pagePath": "pages/index/index",
  44. "text": "首页"
  45. },
  46. {
  47. "selectedIconPath": "images/cur-piano.png",
  48. "iconPath": "images/piano.png",
  49. "pagePath": "pages/piano/piano",
  50. "text": "预约"
  51. },
  52. {
  53. "selectedIconPath": "images/cur-my.png",
  54. "iconPath": "images/my.png",
  55. "pagePath": "pages/myself/myself",
  56. "text": "我的"
  57. }
  58. ]
  59. },
  60. "usingComponents": {}
  61. }