app.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/news/news",
  5. "pages/case/case",
  6. "pages/about/about",
  7. "pages/test/test"
  8. ],
  9. "subPackages": [],
  10. "window": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "uni-app",
  13. "navigationBarBackgroundColor": "#FFFFFF",
  14. "backgroundColor": "#f8f8f8",
  15. "enablePullDownRefresh": true
  16. },
  17. "tabBar": {
  18. "color": "#FFFFFF",
  19. "selectedColor": "#FFFFFF",
  20. "iconWidth": "18px",
  21. "borderStyle": "black",
  22. "backgroundColor": "#1874CD",
  23. "selectedBackgroundColor": "#3CB371",
  24. "list": [
  25. {
  26. "pagePath": "pages/index/index",
  27. "iconPath": "static/tabBar/11.png",
  28. "selectedIconPath": "static/tabBar/11.png",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/about/about",
  33. "iconPath": "static/tabBar/22.png",
  34. "selectedIconPath": "static/tabBar/22.png",
  35. "text": "关于我们"
  36. },
  37. {
  38. "pagePath": "pages/case/case",
  39. "iconPath": "static/tabBar/33.png",
  40. "selectedIconPath": "static/tabBar/33.png",
  41. "text": "案例展示"
  42. },
  43. {
  44. "pagePath": "pages/news/news",
  45. "iconPath": "static/tabBar/44.png",
  46. "selectedIconPath": "static/tabBar/44.png",
  47. "text": "新闻动态"
  48. },
  49. {
  50. "pagePath": "pages/test/test",
  51. "iconPath": "static/tabBar/55.png",
  52. "selectedIconPath": "static/tabBar/55.png",
  53. "text": "节水测试"
  54. }
  55. ]
  56. },
  57. "usingComponents": {}
  58. }