app.json 1.5 KB

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