app.json 1.2 KB

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