Files
zyplayer-doc/zyplayer-doc-ui/db-ui/src/views/data/Export.vue
2021-06-08 23:04:15 +08:00

211 lines
8.4 KiB
Vue

<template>
<div style="padding: 0 10px;height: 100%;box-sizing: border-box;">
<el-card>
<div slot="header" class="clearfix">
<span>数据库表导出</span>
</div>
<div style="margin-bottom: 10px;">
<el-select v-model="choiceDatasourceId" @change="datasourceChangeEvents" filterable placeholder="请选择数据源">
<el-option v-for="item in datasourceOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
<el-select v-model="choiceDatabase" @change="databaseChangeEvents" filterable placeholder="请选择数据库" style="margin: 0 10px;">
<el-option v-for="item in databaseList" :key="item.dbName" :label="item.dbName" :value="item.dbName"></el-option>
</el-select>
<el-button v-on:click="showExportTypeChoice" type="primary" style="margin: 0 10px 0 20px;">导出选中的表</el-button>
<a target="_blank" title="点击查看如何使用" href="http://doc.zyplayer.com/zyplayer-doc-manage/doc-wiki#/page/share/view?pageId=117&space=23f3f59a60824d21af9f7c3bbc9bc3cb"><i class="el-icon-info" style="color: #999;"></i></a>
</div>
<el-table :data="tableList" stripe border @selection-change="handleSelectionChange" style="width: 100%; margin-bottom: 5px;">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column prop="tableName" label="表名"></el-table-column>
<el-table-column prop="tableComment" label="表注释"></el-table-column>
</el-table>
</el-card>
<form method="post" ref="downloadForm" :action="downloadFormParam.url" target="_blank">
<input type="hidden" :name="key" :value="val" v-for="(val,key) in downloadFormParam.param">
</form>
<!--导出选项弹窗-->
<el-dialog :visible.sync="exportTypeChoiceVisible" width="600px">
<span slot="title">库表导出选项</span>
<el-form label-width="100px">
<el-form-item label="导出类型:">
<el-radio-group v-model="exportType" @change="exportTypeChange">
<el-radio :label="3">表数据</el-radio>
<el-radio :label="1">表结构文档</el-radio>
<el-radio :label="2">建表语句SQL</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="导出格式:" v-if="exportType == 1">
<el-select v-model="exportFormat" filterable placeholder="请选择导出格式" style="width: 430px;">
<el-option label="HTML格式" :value="1"></el-option>
<el-option label="Excel格式" :value="2"></el-option>
<el-option label="Word格式" :value="3"></el-option>
</el-select>
</el-form-item>
<template v-else-if="exportType == 3">
<el-form-item label="导出格式:">
<el-select v-model="downloadType" filterable placeholder="请选择导出类型" style="width: 430px;">
<el-option label="SQL Inserts" value="insert"></el-option>
<el-option label="SQL Updates" value="update"></el-option>
<el-option label="JSON" value="json"></el-option>
</el-select>
</el-form-item>
<el-form-item label="数据表:" v-if="downloadType === 'insert'">
<el-checkbox :true-label="1" :false-label="0" v-model="dropTableFlag" @change="dropTableFlagChange">删除表{{dropTableFlag==1?'!!':''}}</el-checkbox>
<el-checkbox :true-label="1" :false-label="0" v-model="createTableFlag" @change="createTableFlagChange">创建表</el-checkbox>
</el-form-item>
<el-form-item label="导出方式:">
<el-radio-group v-model="downloadFileType">
<el-radio :label="1">单个文件</el-radio>
<el-radio :label="2">zip压缩文件</el-radio>
</el-radio-group>
</el-form-item>
</template>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="exportTypeChoiceVisible = false"> </el-button>
<el-button type="primary" @click="doExport"> </el-button>
</span>
</el-dialog>
</div>
</template>
<script>
import datasourceApi from '../../common/api/datasource'
export default {
data() {
return {
// 数据源相关
datasourceOptions: [],
datasourceList: [],
choiceDatasourceId: "",
choiceDatabase: "",
choiceTable: "",
exportType: 3,
exportFormat: 1,
downloadFileType: 1,
exportTypeChoiceVisible: false,
// 页面展示相关
nowDatasourceShow: {},
databaseList: [],
tableList: [],
selectTables: [],
downloadFormParam: {
url: 'zyplayer-doc-db/doc-db/exportDatabase',
param: {}
},
// 数据导出
downloadType: 'insert',
dropTableFlag: 0,
createTableFlag: 0,
}
},
mounted: function () {
this.loadDatasourceList();
},
methods: {
datasourceChangeEvents() {
this.nowDatasourceShow = this.choiceDatasourceId;
this.loadDatabaseList(this.choiceDatasourceId);
},
databaseChangeEvents() {
this.loadGetTableList();
},
exportTypeChange() {
this.exportFormat = 1;
console.log(this.exportType);
},
doExport() {
if (!this.exportType) {
this.$message.info("请选择导出类型");
return;
}
if (!this.exportFormat) {
this.$message.info("请选择导出格式");
return;
}
let tableNames = "";
for (let i = 0; i < this.selectTables.length; i++) {
if (tableNames !== "") {
tableNames += ",";
}
tableNames += this.selectTables[i].tableName;
}
// 改为post方式提交下载
this.downloadFormParam.param = {
sourceId: this.choiceDatasourceId,
exportType: this.exportType,
exportFormat: this.exportFormat,
dbName: this.choiceDatabase,
downloadType: this.downloadType,
dropTableFlag: this.dropTableFlag,
createTableFlag: this.createTableFlag,
downloadFileType: this.downloadFileType,
tableNames: tableNames,
};
if (this.exportType == 3) {
this.downloadFormParam.url = 'zyplayer-doc-db/data-view/downloadMultiple';
} else {
this.downloadFormParam.url = 'zyplayer-doc-db/doc-db/exportDatabase';
}
setTimeout(() => this.$refs.downloadForm.submit(), 0);
this.exportTypeChoiceVisible = false;
},
showExportTypeChoice() {
if (this.selectTables.length <= 0) {
this.$message.info("请选择需要导出的表");
return;
}
this.exportTypeChoiceVisible = true;
},
loadGetTableList() {
datasourceApi.tableList({sourceId: this.choiceDatasourceId, dbName: this.choiceDatabase}).then(json => {
this.tableList = json.data || [];
});
},
loadDatasourceList() {
datasourceApi.datasourceList({}).then(json => {
this.datasourceList = json.data || [];
let datasourceOptions = [];
for (let i = 0; i < this.datasourceList.length; i++) {
datasourceOptions.push({
label: this.datasourceList[i].name, value: this.datasourceList[i].id
});
}
this.datasourceOptions = datasourceOptions;
});
},
loadDatabaseList() {
datasourceApi.databaseList({sourceId: this.choiceDatasourceId}).then(json => {
this.databaseList = json.data || [];
});
},
handleSelectionChange(val) {
this.selectTables = val;
},
dropTableFlagChange() {
if (this.dropTableFlag === 1) {
this.createTableFlag = 1;
}
},
createTableFlagChange() {
if (this.createTableFlag == 0) {
this.dropTableFlag = 0;
}
},
}
}
</script>
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
}
.header-right-user-name{color: #fff;padding-right: 5px;}
.el-menu-vertical{border-right: 0;background: #fafafa;}
.el-menu-vertical .el-menu{background: #fafafa;}
.el-header {background-color: #409EFF; color: #333; line-height: 40px; text-align: right;height: 40px !important;}
</style>