新增:IOT 产品管理

This commit is contained in:
安浩浩
2024-09-07 09:46:52 +08:00
parent 5ba69ba707
commit 4aea2eaed5
8 changed files with 622 additions and 1 deletions

View File

@ -594,6 +594,27 @@ const remainingRouter: AppRouteRecordRaw[] = [
}
}
]
},
{
path: '/iot',
component: Layout,
name: 'IOT',
meta: {
hidden: true
},
children: [
{
path: 'product/detail/:id',
name: 'IotProductDetail',
meta: {
title: '产品详情',
noCache: true,
hidden: true,
activeMenu: '/iot/product'
},
component: () => import('@/views/iot/product/detail/index.vue')
}
]
}
]