!148 refactor: 支持kafka操作

* fix: 达梦连接问题修复
* refactor: 支持kafka操作
This commit is contained in:
zongyangleo
2026-03-18 09:00:55 +00:00
committed by Coder慌
parent 84ab496308
commit bfa41c3621
55 changed files with 3895 additions and 29 deletions

View File

@@ -125,7 +125,7 @@
<!-- 行号列 -->
<div v-if="column.key == rowNoColumn.key">
<b class="el-text el-text--small">
{{ rowIndex + 1 }}
{{ (pageNum - 1) * pageSize + rowIndex + 1 }}
</b>
</div>
@@ -259,6 +259,14 @@ const props = defineProps({
type: String,
default: '600px',
},
pageSize: {
type: Number,
default: 25,
},
pageNum: {
type: Number,
default: 1,
},
});
const contextmenuRef = ref();