选择展示的列存储起来,下次使用上次选择的列,数据源列表展示留白
This commit is contained in:
76
zyplayer-doc-ui/db-ui/src/views/source/Database.vue
Normal file
76
zyplayer-doc-ui/db-ui/src/views/source/Database.vue
Normal file
@@ -0,0 +1,76 @@
|
||||
<template>
|
||||
<div class="table-database-vue">
|
||||
<el-tabs v-model="tabActiveName" @tab-click="tabActiveNameChange">
|
||||
<el-tab-pane label="数据表" name="columns">
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="数据表" name="columns">
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import datasourceApi from '../../common/api/datasource'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
columnListLoading: false,
|
||||
vueQueryParam: {},
|
||||
columnList: [],
|
||||
tableInfo: [],
|
||||
keyword: '',
|
||||
};
|
||||
},
|
||||
mounted: function () {
|
||||
// 延迟设置展开的目录,edit比app先初始化
|
||||
setTimeout(() => {
|
||||
this.$emit('initLoadDataList', {
|
||||
sourceId: this.vueQueryParam.sourceId,
|
||||
host: this.vueQueryParam.host,
|
||||
dbName: this.vueQueryParam.dbName
|
||||
});
|
||||
}, 500);
|
||||
},
|
||||
activated: function () {
|
||||
this.initQueryParam(this.$route);
|
||||
},
|
||||
methods: {
|
||||
initQueryParam(to) {
|
||||
this.vueQueryParam = to.query;
|
||||
let newName = {key: this.$route.fullPath, val: this.vueQueryParam.dbName};
|
||||
this.$store.commit('global/addTableName', newName);
|
||||
},
|
||||
tabActiveNameChange() {
|
||||
if (this.tabActiveName === 'relationChart') {
|
||||
this.$refs.relationChart.init({
|
||||
sourceId: this.vueQueryParam.sourceId,
|
||||
dbName: this.vueQueryParam.dbName,
|
||||
tableName: this.vueQueryParam.tableName,
|
||||
});
|
||||
} else if (this.tabActiveName === 'tableData') {
|
||||
if (!this.columnList || this.columnList.length <= 0) {
|
||||
this.$message.error("字段信息尚未加载成功,请稍候...");
|
||||
setTimeout(() => this.tabActiveName = 'columns', 0);
|
||||
return;
|
||||
}
|
||||
let primaryColumn = this.columnList.find(item => item.primaryKey == 1) || this.columnList[0];
|
||||
this.$refs.dataPreview.init({
|
||||
sourceId: this.vueQueryParam.sourceId,
|
||||
dbName: this.vueQueryParam.dbName,
|
||||
tableName: this.vueQueryParam.tableName,
|
||||
host: this.vueQueryParam.host,
|
||||
dbType: this.tableStatusInfo.dbType,
|
||||
// 默认排序字段,先随便取一个,impala等数据库必须排序后才能分页查
|
||||
orderColumn: primaryColumn.name,
|
||||
}, this.columnList);
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.table-database-vue .el-table td, .table-database-vue .el-table th{padding: 5px 0;}
|
||||
.table-database-vue .label{width: 140px; text-align: right;}
|
||||
</style>
|
||||
|
||||
78
zyplayer-doc-ui/db-ui/src/views/source/TableColumnSearch.vue
Normal file
78
zyplayer-doc-ui/db-ui/src/views/source/TableColumnSearch.vue
Normal file
@@ -0,0 +1,78 @@
|
||||
<template>
|
||||
<div class="table-database-vue">
|
||||
<el-card style="margin: 10px;" shadow="never">
|
||||
<div slot="header" class="clearfix">库信息</div>
|
||||
<el-row style="margin-bottom: 20px;">
|
||||
<el-col :span="12"><span class="label">数据源:</span>{{vueQueryParam.host}}</el-col>
|
||||
<el-col :span="12"><span class="label">数据库:</span>{{vueQueryParam.dbName}}</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<span class="label">关键字:</span>
|
||||
<el-input v-model="keyword" placeholder="输入字段名或注释搜索库中相关的表或字段信息" style="width: 350px;margin-right: 10px;"></el-input>
|
||||
<el-button class="search-submit" type="primary" icon="el-icon-search" @click="searchSubmit">模糊搜索</el-button>
|
||||
<el-button icon="el-icon-coin" @click="funcManage">函数管理</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
<div style="padding: 10px;" v-loading="columnListLoading">
|
||||
<el-table :data="columnList" stripe border style="width: 100%; margin-bottom: 5px;">
|
||||
<el-table-column prop="tableName" label="表名" width="200"></el-table-column>
|
||||
<el-table-column prop="columnName" label="字段名" width="200"></el-table-column>
|
||||
<el-table-column prop="description" label="注释"></el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import datasourceApi from '../../common/api/datasource'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
columnListLoading: false,
|
||||
vueQueryParam: {},
|
||||
columnList: [],
|
||||
tableInfo: [],
|
||||
keyword: '',
|
||||
};
|
||||
},
|
||||
mounted: function () {
|
||||
// 延迟设置展开的目录,edit比app先初始化
|
||||
setTimeout(() => {
|
||||
this.$emit('initLoadDataList', {
|
||||
sourceId: this.vueQueryParam.sourceId,
|
||||
host: this.vueQueryParam.host,
|
||||
dbName: this.vueQueryParam.dbName
|
||||
});
|
||||
}, 500);
|
||||
},
|
||||
activated: function () {
|
||||
this.initQueryParam(this.$route);
|
||||
},
|
||||
methods: {
|
||||
initQueryParam(to) {
|
||||
this.vueQueryParam = to.query;
|
||||
let newName = {key: this.$route.fullPath, val: this.vueQueryParam.dbName};
|
||||
this.$store.commit('global/addTableName', newName);
|
||||
},
|
||||
searchSubmit() {
|
||||
this.columnListLoading = true;
|
||||
this.vueQueryParam.searchText = this.keyword;
|
||||
datasourceApi.tableAndColumnBySearch(this.vueQueryParam).then(json => {
|
||||
this.columnList = json.data || [];
|
||||
this.columnListLoading = false;
|
||||
});
|
||||
},
|
||||
funcManage() {
|
||||
this.$router.push({path: '/procedure/list', query: this.vueQueryParam});
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.table-database-vue .el-table td, .table-database-vue .el-table th{padding: 5px 0;}
|
||||
.table-database-vue .label{width: 140px; text-align: right;}
|
||||
</style>
|
||||
|
||||
78
zyplayer-doc-ui/db-ui/src/views/source/TableList.vue
Normal file
78
zyplayer-doc-ui/db-ui/src/views/source/TableList.vue
Normal file
@@ -0,0 +1,78 @@
|
||||
<template>
|
||||
<div class="table-database-vue">
|
||||
<el-card style="margin: 10px;" shadow="never">
|
||||
<div slot="header" class="clearfix">库信息</div>
|
||||
<el-row style="margin-bottom: 20px;">
|
||||
<el-col :span="12"><span class="label">数据源:</span>{{vueQueryParam.host}}</el-col>
|
||||
<el-col :span="12"><span class="label">数据库:</span>{{vueQueryParam.dbName}}</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<span class="label">关键字:</span>
|
||||
<el-input v-model="keyword" placeholder="输入字段名或注释搜索库中相关的表或字段信息" style="width: 350px;margin-right: 10px;"></el-input>
|
||||
<el-button class="search-submit" type="primary" icon="el-icon-search" @click="searchSubmit">模糊搜索</el-button>
|
||||
<el-button icon="el-icon-coin" @click="funcManage">函数管理</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-card>
|
||||
<div style="padding: 10px;" v-loading="columnListLoading">
|
||||
<el-table :data="columnList" stripe border style="width: 100%; margin-bottom: 5px;">
|
||||
<el-table-column prop="tableName" label="表名" width="200"></el-table-column>
|
||||
<el-table-column prop="columnName" label="字段名" width="200"></el-table-column>
|
||||
<el-table-column prop="description" label="注释"></el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import datasourceApi from '../../common/api/datasource'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
columnListLoading: false,
|
||||
vueQueryParam: {},
|
||||
columnList: [],
|
||||
tableInfo: [],
|
||||
keyword: '',
|
||||
};
|
||||
},
|
||||
mounted: function () {
|
||||
// 延迟设置展开的目录,edit比app先初始化
|
||||
setTimeout(() => {
|
||||
this.$emit('initLoadDataList', {
|
||||
sourceId: this.vueQueryParam.sourceId,
|
||||
host: this.vueQueryParam.host,
|
||||
dbName: this.vueQueryParam.dbName
|
||||
});
|
||||
}, 500);
|
||||
},
|
||||
activated: function () {
|
||||
this.initQueryParam(this.$route);
|
||||
},
|
||||
methods: {
|
||||
initQueryParam(to) {
|
||||
this.vueQueryParam = to.query;
|
||||
let newName = {key: this.$route.fullPath, val: this.vueQueryParam.dbName};
|
||||
this.$store.commit('global/addTableName', newName);
|
||||
},
|
||||
searchSubmit() {
|
||||
this.columnListLoading = true;
|
||||
this.vueQueryParam.searchText = this.keyword;
|
||||
datasourceApi.tableAndColumnBySearch(this.vueQueryParam).then(json => {
|
||||
this.columnList = json.data || [];
|
||||
this.columnListLoading = false;
|
||||
});
|
||||
},
|
||||
funcManage() {
|
||||
this.$router.push({path: '/procedure/list', query: this.vueQueryParam});
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.table-database-vue .el-table td, .table-database-vue .el-table th{padding: 5px 0;}
|
||||
.table-database-vue .label{width: 140px; text-align: right;}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user