charts.ts 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. import type { MenuModule } from '/@/router/types.d';
  2. const menu: MenuModule = {
  3. orderNo: 500,
  4. menu: {
  5. name: '图表',
  6. path: '/charts',
  7. children: [
  8. {
  9. path: '/apexChart',
  10. name: 'ApexChart',
  11. },
  12. {
  13. path: '/echarts',
  14. name: 'Echarts',
  15. children: [
  16. {
  17. path: '/map',
  18. name: '地图',
  19. },
  20. {
  21. path: '/line',
  22. name: '折线图',
  23. },
  24. {
  25. path: '/pie',
  26. name: '饼图',
  27. },
  28. ],
  29. },
  30. // {
  31. // path: '/excel',
  32. // name: 'excel',
  33. // children: [
  34. {
  35. path: '/customExport',
  36. name: '选择导出格式',
  37. },
  38. {
  39. path: '/jsonExport',
  40. name: 'JSON数据导出',
  41. },
  42. {
  43. path: '/arrayExport',
  44. name: 'Array数据导出',
  45. },
  46. {
  47. path: '/importExcel',
  48. name: '导入',
  49. },
  50. // ],
  51. // },
  52. ],
  53. },
  54. };
  55. export default menu;