Explorar el Código

fix: device assign page cannot be opened

Casper Dai hace 3 años
padre
commit
9f4c09d29b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/router/index.js

+ 2 - 2
src/router/index.js

@@ -290,14 +290,14 @@ export const asyncRoutes = [
         children: [
           {
             name: 'device-management',
-            path: '',
+            path: 'manage',
             component: () => import('@/views/realm/device/index'),
             meta: { cache: 'DeviceManagement' }
           },
           {
             hidden: true,
             name: 'device-config',
-            path: ':id',
+            path: 'manage/:id',
             component: () => import('@/views/realm/device/config/index'),
             access: Access.MANAGE_TENANTS,
             meta: { title: '配置', cache: 'DeviceManagement' }