app.json 1.2 KB

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