app.json 1.3 KB

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