app.json 1.3 KB

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