update:新增单独提交界面

This commit is contained in:
2026-04-13 15:18:40 +08:00
parent 26780d712a
commit c63b900251
2 changed files with 48 additions and 0 deletions

View File

@@ -140,6 +140,29 @@ export default [
},
],
},
{
title: '作业管理',
path: '/job',
name: 'Job',
icon: Icons['Monitor'],
children: [
{
title: '作业提交',
path: '/job/submit',
name: 'JobSubmit',
},
// {
// title: '作业列表',
// path: '/job/list',
// name: 'JobList',
// },
// {
// title: '计算资源',
// path: '/job/resources',
// name: 'JobResources',
// },
],
},
{
title: '数据管理',
path: '/data',

View File

@@ -87,6 +87,31 @@ export default [
},
],
},
{
title: '作业管理',
path: '/job',
name: 'Job',
children: [
{
title: '作业提交',
path: '/job/submit',
name: 'JobSubmit',
component: () => import('@/views/job/jobSubmit/index.vue'),
},
// {
// title: '作业列表',
// path: '/job/list',
// name: 'JobList',
// component: () => import('@/views/job/JobList/index.vue'),
// },
// {
// title: '计算资源',
// path: '/job/resources',
// name: 'JobResources',
// component: () => import('@/views/job/JobResources/index.vue'),
// },
],
},
{
title: '任务管理',
path: '/task',