app.json 1.4 KB

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