feat: 工作流适配数据中枢查询节点

- 新增查询数据与写入数据节点并移除旧数据中心节点入口

- 将查询数据节点切换为连接服务加 SQL 的执行模型

- 同步更新工作流校验、提示词上下文与设计器交互
This commit is contained in:
2026-04-02 18:56:34 +08:00
parent 798effbd5b
commit 1ecc28e498
40 changed files with 1973 additions and 692 deletions

View File

@@ -49,9 +49,13 @@
<style lang="less">
.input-container {
display: grid;
grid-template-columns: 40% 50% 10%;
row-gap: 5px;
column-gap: 3px;
grid-template-columns: 124px minmax(0, 1fr) 22px;
row-gap: 6px;
column-gap: 4px;
align-items: center;
width: 100%;
min-width: 318px;
box-sizing: border-box;
.none-params {
font-size: 12px;
@@ -61,16 +65,17 @@
justify-content: center;
align-items: center;
border-radius: 5px;
width: calc(100% - 5px);
width: 100%;
grid-column: 1 / -1; /* 从第一列开始到最后一列结束 */
box-sizing: border-box;
}
.input-header {
font-size: 12px;
color: var(--tf-text-secondary);
min-width: 0;
}
}
</style>

View File

@@ -148,6 +148,8 @@
.input-item {
display: flex;
align-items: center;
width: 100%;
min-width: 0;
}
.input-more-setting {
@@ -171,4 +173,3 @@
}
</style>

View File

@@ -41,9 +41,13 @@
<style lang="less">
.input-container {
display: grid;
grid-template-columns: 40% 50% 10%;
row-gap: 5px;
column-gap: 3px;
grid-template-columns: 124px minmax(0, 1fr) 22px;
row-gap: 6px;
column-gap: 4px;
align-items: center;
width: 100%;
min-width: 318px;
box-sizing: border-box;
.none-params {
font-size: 12px;
@@ -53,16 +57,16 @@
justify-content: center;
align-items: center;
border-radius: 5px;
width: calc(100% - 5px);
width: 100%;
grid-column: 1 / -1; /* 从第一列开始到最后一列结束 */
box-sizing: border-box;
}
.input-header {
font-size: 12px;
color: var(--tf-text-secondary);
min-width: 0;
}
}
</style>