refactor(all): 初始化项目

迁移项目到独立的 service 进行集中开发
包含以下组件的查询 API 服务
flink
hudi
database(info)
pulsar
yarn
包含前端服务和 UI
web
包含公共代码
configuration
This commit is contained in:
2023-05-01 00:35:57 +08:00
parent 6b4374ffcc
commit 2f2c10e7b7
191 changed files with 789282 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
function cloudTab() {
return {
title: 'Cloud 集群',
tab: [
{
type: 'wrapper',
size: 'none',
body: [
{
type: 'button',
label: 'Eureka',
actionType: 'link',
url: 'http://132.122.116.142:35670',
blank: true,
}
],
},
{type: 'divider'},
{
type: 'crud',
title: '服务列表',
api: '${base}/cloud/list',
source: '$items',
headerToolbar: ['reload'],
columns: [
{name: 'name', label: '名称'},
{
name: 'serviceId',
label: '服务',
width: 100,
},
{name: 'url', label: '地址', width: 200},
]
}
],
}
}