feature(web): 增加批量增加压缩调度

This commit is contained in:
2023-07-06 12:28:46 +08:00
parent 30f42b2734
commit e47de5d5c6
6 changed files with 142 additions and 5 deletions

View File

@@ -5,10 +5,6 @@ function toolTab() {
{
type: 'form',
title: '查询时间线',
mode: 'horizontal',
horizontal: {
leftFixed: 'md',
},
actions: [
{
type: 'submit',
@@ -54,10 +50,31 @@ function toolTab() {
name: 'hdfs',
label: '表HDFS路经',
required: true,
clearable: true,
}
]
},
{
type: 'form',
title: '批量提交压缩任务',
api: {
method: 'post',
url: '${base}/schedule/table_batch',
dataType: 'form',
},
body: [
{
name: 'lines',
type: 'textarea',
label: '表信息 (flink_job_id alias\\n)',
clearable: true,
minRows: 5,
maxRows: 5,
className: 'no-resize',
required: true,
}
]
},
{type: 'divider'},
]
}
}