mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-10-15 06:10:23 +00:00
修正issue及界面错误
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
|
||||
基于Vue.js 2.0编写的dbswitch操作管理web端。
|
||||
|
||||
> 项目地址:https://gitee.com/inrgihc/dbswitch
|
||||
|
||||
## 二、环境
|
||||
|
||||
**node** : >= v14.15.4
|
||||
|
@@ -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 // 工具入口模块,读取配置文件中的参数执行异构迁移同步
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user