app.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/catalog/catalog",
  5. "pages/user/index"
  6. ],
  7. "subPackages": [{
  8. "root": "packageLogin",
  9. "pages": [
  10. "login/login"
  11. ]
  12. },
  13. {
  14. "root": "packageGoods",
  15. "pages": [
  16. "detail/detail"
  17. ]
  18. },
  19. {
  20. "root": "packageUser",
  21. "pages": [
  22. "information/information",
  23. "nickNameModify/nickNameModify",
  24. "mobileModify/mobileModify",
  25. "collect/collect",
  26. "footprint/footprint"
  27. ]
  28. },
  29. {
  30. "root": "packagePoster",
  31. "pages": [
  32. "index"
  33. ]
  34. },
  35. {
  36. "root": "packagePosterImg",
  37. "pages": [
  38. "index"
  39. ]
  40. }
  41. ],
  42. "window": {
  43. "navigationBarBackgroundColor": "#fff",
  44. "navigationBarTextStyle": "black",
  45. "backgroundColor": "#F5F5F5",
  46. "backgroundTextStyle": "dark"
  47. },
  48. "tabBar": {
  49. "backgroundColor": "#fff",
  50. "borderStyle": "white",
  51. "selectedColor": "#D32D2F",
  52. "color": "#50555F",
  53. "list": [{
  54. "pagePath": "pages/index/index",
  55. "iconPath": "static/images/home.png",
  56. "selectedIconPath": "static/images/home@selected.png",
  57. "text": "首页"
  58. },
  59. {
  60. "pagePath": "pages/catalog/catalog",
  61. "iconPath": "static/images/category.png",
  62. "selectedIconPath": "static/images/category@selected.png",
  63. "text": "分类"
  64. },
  65. {
  66. "pagePath": "pages/user/index",
  67. "iconPath": "static/images/my.png",
  68. "selectedIconPath": "static/images/my@selected.png",
  69. "text": "我的"
  70. }
  71. ]
  72. },
  73. "networkTimeout": {
  74. "request": 10000,
  75. "connectSocket": 10000,
  76. "uploadFile": 10000,
  77. "downloadFile": 10000
  78. },
  79. "debug": false,
  80. "sitemapLocation": "sitemap.json",
  81. "requiredBackgroundModes": ["audio", "location"],
  82. "usingComponents": {
  83. "van-icon": "@vant/weapp/icon/index",
  84. "van-empty": "@vant/weapp/empty/index"
  85. }
  86. }