diff --git a/src/router/modules/table.js b/src/router/modules/table.js index d5b2b09e..f87def56 100644 --- a/src/router/modules/table.js +++ b/src/router/modules/table.js @@ -3,25 +3,25 @@ import Layout from '@/layout' const tableRouter = { - path: '/table', + path: '/deploy', component: Layout, - redirect: '/table/complex-table', - name: 'Table', + redirect: '/deploy/app', + name: 'Deploy', meta: { title: '算力请求', icon: 'edit' }, children: [ { - path: 'dynamic-table', - component: () => import('@/views/table/dynamic-table/index'), - name: 'DynamicTable', + path: 'app', + component: () => import('@/views/deploy/app.vue'), + name: 'DeployApp', meta: { title: '应用部署' } }, { - path: 'drag-table', - component: () => import('@/views/table/drag-table'), - name: 'DragTable', + path: 'service', + component: () => import('@/views/deploy/service.vue'), + name: 'DeployService', meta: { title: '服务部署' } } ] diff --git a/src/views/deploy/app.vue b/src/views/deploy/app.vue new file mode 100644 index 00000000..e69de29b diff --git a/src/views/deploy/service.vue b/src/views/deploy/service.vue new file mode 100644 index 00000000..e69de29b