Merge remote-tracking branch 'origin/master'

wangxinyuan
chaiyapeng 2024-08-22 00:50:26 +08:00
commit 6eb533cdc3
2 changed files with 85 additions and 0 deletions

View File

@ -0,0 +1,8 @@
//查询数据源列表
export function selectSourceList(data){
return request({
url: "/etl/source/list",
method: "POST",
data:data
})
}

View File

@ -0,0 +1,77 @@
<template>
<div>
<el-form label-width="80px" :model="SourceReq">
<el-form-item label="数据源名称">
<el-input v-model="SourceReq.dataResourceName"></el-input>
</el-form-item>
<el-form-item label="数据来源系统名称">
<el-input v-model="SourceReq.dataSourcesSystemName"></el-input>
</el-form-item>
<el-form-item label="数据库名称">
<el-input v-model="SourceReq.databaseName"></el-input>
</el-form-item>
<el-button @click="findSelectSourceList">
查询
</el-button>
</el-form>
</div>
</template>
<script>
//jsjsjson,
//import from ',
import {selectSourceList} from "@/api/etl/switch";
export default {
//import使"
components: {},
props: {},
data() {
//"
return {
SourceReq:{
}
};
},
// data",
computed: {},
//data",
watch: {},
//",
methods: {
findSelectSourceList(){
selectSourceList(this.SourceReq).then(res=>{
})
},
},
// - 访this",
created() {
this.findSelectSourceList();
},
// - 访DOM",
mounted() {
},
beforeCreate() {
}, // - ",
beforeMount() {
}, // - ",
beforeUpdate() {
}, // - ",
updated() {
}, // - ",
beforeDestroy() {
}, // - ",
destroyed() {
}, // - ",
activated() {
} //keep-alive",
};
</script>
<style scoped>
</style>