app.json 1.2 KB

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