app.json 1.3 KB

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