operation.ts 845 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. export default {
  2. path: "/operation",
  3. redirect: "/operation/shop",
  4. meta: {
  5. icon: "ri:briefcase-4-line",
  6. title: "运营管理",
  7. rank: 3
  8. },
  9. children: [
  10. {
  11. path: "/operation/shop",
  12. name: "ShopList",
  13. component: () => import("@/views/shop/index.vue"),
  14. meta: {
  15. icon: "ri:store-3-line",
  16. title: "门店管理"
  17. }
  18. },
  19. {
  20. path: "/operation/device",
  21. name: "DeviceList",
  22. component: () => import("@/views/device/index.vue"),
  23. meta: {
  24. icon: "ri:computer-line",
  25. title: "设备管理"
  26. }
  27. },
  28. {
  29. path: "/map-test",
  30. name: "MapTest",
  31. component: () => import("@/views/map-test/index.vue"),
  32. meta: {
  33. icon: "ri:map-pin-line",
  34. title: "地图功能测试"
  35. }
  36. }
  37. ]
  38. } satisfies RouteConfigsTable;