app.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/car/car",
  5. "pages/my/my",
  6. "pages/detail/detail",
  7. "pages/list/list"
  8. ],
  9. "window": {
  10. "navigationBarTextStyle": "white",
  11. "navigationBarTitleText": "小程序",
  12. "navigationBarBackgroundColor": "#ff0000",
  13. "navigationStyle": "default"
  14. },
  15. "tabBar": {
  16. "custom": false,
  17. "color": "#000000",
  18. "selectedColor": "#ff0000",
  19. "backgroundColor": "#ffffff",
  20. "list": [
  21. {
  22. "pagePath": "pages/home/home",
  23. "text": "首页",
  24. "iconPath": "/icon/home.png",
  25. "selectedIconPath": "/icon/home1.png"
  26. },
  27. {
  28. "pagePath": "pages/car/car",
  29. "text": "购物车",
  30. "iconPath": "/icon/shop.png",
  31. "selectedIconPath": "/icon/shop1.png"
  32. },
  33. {
  34. "pagePath": "pages/my/my",
  35. "text": "我的",
  36. "iconPath": "/icon/my.png",
  37. "selectedIconPath": "/icon/my1.png"
  38. }
  39. ]
  40. },
  41. "networkTimeout": {
  42. "request": 20000,
  43. "connectSocket": 20000,
  44. "uploadFile": 20000,
  45. "downloadFile": 20000
  46. },
  47. "usingComponents": {
  48. },
  49. "componentFramework": "glass-easel",
  50. "sitemapLocation": "sitemap.json",
  51. "lazyCodeLoading": "requiredComponents"
  52. }