fix: lint

This commit is contained in:
xingyu4j
2025-10-23 09:41:05 +08:00
parent dd6d9d8868
commit 7324166a4c

View File

@@ -18,7 +18,8 @@ const routes: RouteRecordRaw[] = [
title: '产品详情', title: '产品详情',
activePath: '/iot/device/product', activePath: '/iot/device/product',
}, },
component: () => import('#/views/iot/product/product/modules/detail/index.vue'), component: () =>
import('#/views/iot/product/product/modules/detail/index.vue'),
}, },
{ {
path: 'device/detail/:id', path: 'device/detail/:id',
@@ -27,7 +28,8 @@ const routes: RouteRecordRaw[] = [
title: '设备详情', title: '设备详情',
activePath: '/iot/device/device', activePath: '/iot/device/device',
}, },
component: () => import('#/views/iot/device/device/modules/detail/index.vue'), component: () =>
import('#/views/iot/device/device/modules/detail/index.vue'),
}, },
{ {
path: 'ota/firmware/detail/:id', path: 'ota/firmware/detail/:id',
@@ -36,11 +38,11 @@ const routes: RouteRecordRaw[] = [
title: '固件详情', title: '固件详情',
activePath: '/iot/ota', activePath: '/iot/ota',
}, },
component: () => import('#/views/iot/ota/modules/firmware-detail/index.vue'), component: () =>
import('#/views/iot/ota/modules/firmware-detail/index.vue'),
}, },
], ],
}, },
]; ];
export default routes; export default routes;