app.json 1.4 KB

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