feature(web): 增加单个表压缩提交

This commit is contained in:
2023-07-11 10:51:20 +08:00
parent f0881d65d7
commit 43b1933d4f
3 changed files with 72 additions and 13 deletions

View File

@@ -1925,3 +1925,25 @@ function filterableField(mapping, multiple = false) {
]
}
}
function flinkJobIdTextInput() {
return {
type: 'input-text',
name: 'flinkJobId',
label: 'Flink job id',
placeholder: '通过 ID 搜索',
clearable: true,
autoComplete: '${base}/table/all_flink_job_id?key=$term',
}
}
function aliasTextInput() {
return {
type: 'input-text',
name: 'alias',
label: '别名',
placeholder: '通过别名搜索',
clearable: true,
autoComplete: '${base}/table/all_alias?key=$term',
}
}