| 1234567891011121314151617181920212223242526272829303132333435363738 |
- export default {
- path: "/operation",
- redirect: "/operation/shop",
- meta: {
- icon: "ri:briefcase-4-line",
- title: "运营管理",
- rank: 3
- },
- children: [
- {
- path: "/operation/shop",
- name: "ShopList",
- component: () => import("@/views/shop/index.vue"),
- meta: {
- icon: "ri:store-3-line",
- title: "门店管理"
- }
- },
- {
- path: "/operation/device",
- name: "DeviceList",
- component: () => import("@/views/device/index.vue"),
- meta: {
- icon: "ri:computer-line",
- title: "设备管理"
- }
- },
- {
- path: "/map-test",
- name: "MapTest",
- component: () => import("@/views/map-test/index.vue"),
- meta: {
- icon: "ri:map-pin-line",
- title: "地图功能测试"
- }
- }
- ]
- } satisfies RouteConfigsTable;
|