routes-file-five.ts 937 B

1234567891011121314151617181920212223242526272829303132
  1. import Layout from "@/layout";
  2. const HomeRoutes = {
  3. path: "/dataQuery",
  4. component: Layout,
  5. name: "dataQuery",
  6. redirect: "/dataQuery/flightQuery",
  7. //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
  8. meta: { title: "数据查询", elSvgIcon: "Search" },
  9. children: [
  10. {
  11. path: "/dataQuery/flightQuery",
  12. name: "FlightQuery",
  13. meta: { title: "航班查询" },
  14. component: () => import("@/views/dataQuery/flightQuery/index.vue"),
  15. },
  16. {
  17. path: "/dataQuery/waybillQuery",
  18. name: "WaybillQuery",
  19. meta: { title: "运单查询" },
  20. component: () => import("@/views/dataQuery/waybillQuery/index.vue"),
  21. },
  22. {
  23. path: "/dataQuery/freightInquiry",
  24. name: "FreightInquiry",
  25. meta: { title: "货物查询"},
  26. component: () => import("@/views/dataQuery/freightInquiry/index.vue"),
  27. },
  28. ],
  29. };
  30. export default [HomeRoutes];