修正issue及界面错误

This commit is contained in:
inrgihc
2024-05-31 20:55:22 +08:00
parent 8629801641
commit 8d8477641f
26 changed files with 215 additions and 204 deletions

View File

@@ -4,6 +4,8 @@
基于Vue.js 2.0编写的dbswitch操作管理web端。
> 项目地址https://gitee.com/inrgihc/dbswitch
## 二、环境
**node** : >= v14.15.4

View File

@@ -86,6 +86,8 @@
</li>
<li>ClickHouse
</li>
<li>StarRocks
</li>
<li>MongoDB(只支持数据加载写入不支持变化量同步)
</li>
<li>ElasticSearch(只支持数据加载写入不支持变化量同步)
@@ -128,6 +130,7 @@
dbswitch-product-hive // -> hive方言实现类
dbswitch-product-sqlite // -> sqlite方言实现类
dbswitch-product-clickhouse // -> clickhouse方言实现类
dbswitch-product-starrocks // -> starrocks方言实现类
dbswitch-product-mongodb // -> mongodb方言实现类
dbswitch-product-elasticsearch // -> elasticsearch方言实现类
dbswitch-data // 工具入口模块,读取配置文件中的参数执行异构迁移同步

View File

@@ -175,10 +175,12 @@
<el-select size="small"
placeholder="请选择数据源"
v-model="sqlDataSourceId">
<el-option v-for="(item,index) in connectionList"
:key="index"
:label="`[${item.id}]${item.name}`"
:value="item.id"></el-option>
<template v-for="item in connectionList">
<el-option v-if="item.useSql"
:key="item.id"
:label="`[${item.id}]${item.name}`"
:value="item.id"></el-option>
</template>
</el-select>
</div>
</el-col>

View File

@@ -21,9 +21,6 @@
<el-description-item label="地址"
:span='15'
:value="userinfo.address"></el-description-item>
<el-description-item label="锁定"
:span='15'
:value="userinfo.locked"></el-description-item>
<el-description-item label="创建时间"
:span='15'
:value="userinfo.createTime"></el-description-item>