menuItems.ts 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. import {
  2. InfoFilled,
  3. Collection,
  4. Histogram,
  5. Location,
  6. List,
  7. HelpFilled,
  8. } from "@element-plus/icons-vue";
  9. export interface MenuItem {
  10. index: string;
  11. label: string;
  12. icon: any;
  13. children?: MenuItem[];
  14. }
  15. // 按 tab 分组的菜单映射
  16. export const tabMenuMap: Record<string, MenuItem[]> = {
  17. introduction: [
  18. {
  19. index: "/SoilPro",
  20. label: "软件简介",
  21. icon: InfoFilled,
  22. },
  23. {
  24. index: "/Overview",
  25. label: "项目简介",
  26. icon: Collection,
  27. },
  28. {
  29. index: "/ResearchFindings",
  30. label: "研究成果",
  31. icon: Histogram,
  32. },
  33. {
  34. index: "/Unit",
  35. label: "团队信息",
  36. icon: HelpFilled,
  37. },
  38. ],
  39. acidmodelmap: [
  40. {
  41. index: "/acidmodelmap",
  42. label: "土壤酸化地块级预测",
  43. icon: Location,
  44. },
  45. {
  46. index: "/pHPrediction",
  47. label: "土壤pH预测",
  48. icon: Location
  49. }
  50. ],
  51. Calculation: [
  52. {
  53. index: "/Calculation",
  54. label: "土壤反酸预测",
  55. icon: List,
  56. },
  57. {
  58. index: "/SoilAcidReductionIterativeEvolution",
  59. label: "反酸模型显示",
  60. icon: List,
  61. },
  62. ],
  63. AcidNeutralizationModel: [
  64. {
  65. index: "/AcidNeutralizationModel",
  66. label: "土壤降酸预测",
  67. icon: List,
  68. },
  69. {
  70. index: "/SoilAcidificationIterativeEvolution",
  71. label: "降酸模型显示",
  72. icon: List,
  73. },
  74. ],
  75. dataStatistics: [
  76. {
  77. index: "/DetectionStatistics",
  78. label: "检测信息统计",
  79. icon: List,
  80. },
  81. {
  82. index: "/FarmlandPollutionStatistics",
  83. label: "土壤镉含量统计",
  84. icon: List,
  85. },
  86. {
  87. index: "/LandClutivatesStatistics",
  88. label: "作物风险评估系统",
  89. icon: List,
  90. },
  91. {
  92. index: "/SoilacidificationStatistics",
  93. label: "土壤酸化统计",
  94. icon: List,
  95. },
  96. ],
  97. };