app.json 960 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "pages": [
  3. "pages/index/index",
  4. "pages/my/my",
  5. "pages/articleList/articleList",
  6. "pages/dogApplication/dogApplication",
  7. "pages/articleDetail/articleDetail"
  8. ],
  9. "subPackages": [],
  10. "window": {
  11. "navigationBarTextStyle": "black",
  12. "navigationBarTitleText": "uni-app",
  13. "navigationBarBackgroundColor": "#F8F8F8",
  14. "backgroundColor": "#F8F8F8"
  15. },
  16. "tabBar": {
  17. "color": "#000",
  18. "selectedColor": "#000",
  19. "borderStyle": "black",
  20. "height": "100rpx",
  21. "backgroundColor": "#ffffff",
  22. "list": [
  23. {
  24. "pagePath": "pages/index/index",
  25. "iconPath": "static/tabImg/index.png",
  26. "selectedIconPath": "/static/tabImg/index-select.png",
  27. "text": "工作台"
  28. },
  29. {
  30. "pagePath": "pages/my/my",
  31. "iconPath": "static/tabImg/my.png",
  32. "selectedIconPath": "/static/tabImg/my-select.png",
  33. "text": "我的"
  34. }
  35. ]
  36. },
  37. "usingComponents": {}
  38. }