app.json 1.3 KB

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