app.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "pages": [
  3. "pages/dashboard/index",
  4. "pages/activity/index",
  5. "pages/device/index",
  6. "pages/knowledge/index",
  7. "pages/knowledge/detail",
  8. "pages/user/index",
  9. "pages/machine/index",
  10. "pages/ai-chat/index",
  11. "pages/field/index",
  12. "pages/more/index",
  13. "pages/settings/index",
  14. "pages/about/index",
  15. "pages/privacy/index"
  16. ],
  17. "tabBar": {
  18. "color": "#666666",
  19. "selectedColor": "#4CAF50",
  20. "backgroundColor": "#ffffff",
  21. "borderStyle": "black",
  22. "list": [
  23. {
  24. "pagePath": "pages/dashboard/index",
  25. "iconPath": "static/icons/home.png",
  26. "selectedIconPath": "static/icons/home-active.png",
  27. "text": "首页"
  28. },
  29. {
  30. "pagePath": "pages/activity/index",
  31. "iconPath": "static/icons/activity.png",
  32. "selectedIconPath": "static/icons/activity-active.png",
  33. "text": "农事"
  34. },
  35. {
  36. "pagePath": "pages/device/index",
  37. "iconPath": "static/icons/device.png",
  38. "selectedIconPath": "static/icons/device-active.png",
  39. "text": "设备"
  40. },
  41. {
  42. "pagePath": "pages/knowledge/index",
  43. "iconPath": "static/icons/knowledge.png",
  44. "selectedIconPath": "static/icons/knowledge-active.png",
  45. "text": "农技"
  46. },
  47. {
  48. "pagePath": "pages/user/index",
  49. "iconPath": "static/icons/user.png",
  50. "selectedIconPath": "static/icons/user-active.png",
  51. "text": "我的"
  52. }
  53. ]
  54. },
  55. "usingComponents": {}
  56. }