fix(接口定义): csv优化
This commit is contained in:
parent
a1e41339ec
commit
407e177d81
|
@ -7,9 +7,9 @@ import org.springframework.kafka.config.TopicBuilder;
|
||||||
@Configuration
|
@Configuration
|
||||||
public class KafkaConfig {
|
public class KafkaConfig {
|
||||||
// 执行内容监听
|
// 执行内容监听
|
||||||
public final static String EXEC_TOPIC = "ms-automation-exec-topic";
|
public final static String EXEC_TOPIC = "ms-automation-exec-topic123";
|
||||||
//执行结果回传
|
//执行结果回传
|
||||||
public static final String TOPICS = "ms-api-exec-topic";
|
public static final String TOPICS = "ms-api-exec-topic123";
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public NewTopic apiExecTopic() {
|
public NewTopic apiExecTopic() {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<span>
|
<span>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="18">
|
||||||
<el-upload
|
<el-upload
|
||||||
action="#"
|
action="#"
|
||||||
class="api-body-upload"
|
class="api-body-upload"
|
||||||
|
@ -10,25 +12,28 @@
|
||||||
:limit="1"
|
:limit="1"
|
||||||
:on-exceed="exceed"
|
:on-exceed="exceed"
|
||||||
ref="upload">
|
ref="upload">
|
||||||
|
|
||||||
<div class="upload-default">
|
<div class="upload-default">
|
||||||
<i class="el-icon-plus"/>
|
<i class="el-icon-plus"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="upload-item" slot="file" slot-scope="{file}">
|
<div class="upload-item" slot="file" slot-scope="{file}">
|
||||||
<span>{{file.file ? file.file.name : file.name}}</span>
|
<span>{{ file.file ? file.file.name : file.name }}</span>
|
||||||
<span class="el-upload-list__item-actions">
|
<span class="el-upload-list__item-actions">
|
||||||
<span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">
|
<span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">
|
||||||
<i class="el-icon-delete"/>
|
<i class="el-icon-delete"/>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</el-upload>
|
</el-upload>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-button size="small" style="margin: 3px 5px" @click="download">下载</el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: "MsApiBodyFileUpload",
|
name: "MsApiBodyFileUpload",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -42,6 +47,28 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
download() {
|
||||||
|
// 本地文件
|
||||||
|
if (this.parameter.files && this.parameter.files.length > 0 && this.parameter.files[0].file) {
|
||||||
|
console.log("local",this.parameter.files[0].file)
|
||||||
|
}
|
||||||
|
// 远程下载文件
|
||||||
|
if (this.parameter.files && this.parameter.files.length > 0 && !this.parameter.files[0].file) {
|
||||||
|
let file = this.parameter.files[0];
|
||||||
|
let conf = {
|
||||||
|
url: "/api/automation/file/download",
|
||||||
|
method: 'post',
|
||||||
|
data: file,
|
||||||
|
responseType: 'blob',
|
||||||
|
};
|
||||||
|
this.result = this.$request(conf).then(response => {
|
||||||
|
const content = response.data;
|
||||||
|
const blob = new Blob([content]);
|
||||||
|
console.log(content)
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
handleRemove(file) {
|
handleRemove(file) {
|
||||||
this.$refs.upload.handleRemove(file);
|
this.$refs.upload.handleRemove(file);
|
||||||
for (let i = 0; i < this.parameter.files.length; i++) {
|
for (let i = 0; i < this.parameter.files.length; i++) {
|
||||||
|
@ -78,48 +105,48 @@
|
||||||
this.parameter.files = [];
|
this.parameter.files = [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.el-upload {
|
.el-upload {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.api-body-upload >>> .el-upload {
|
.api-body-upload >>> .el-upload {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upload-default {
|
.upload-default {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-icon-plus {
|
.el-icon-plus {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.api-body-upload >>> .el-upload-list__item {
|
.api-body-upload >>> .el-upload-list__item {
|
||||||
height: 30px;
|
height: 30px;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.api-body-upload >>> .el-upload-list--picture-card {
|
.api-body-upload >>> .el-upload-list--picture-card {
|
||||||
}
|
}
|
||||||
|
|
||||||
.api-body-upload {
|
.api-body-upload {
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
border: 1px solid #EBEEF5;
|
border: 1px solid #EBEEF5;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upload-item {
|
.upload-item {
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -200,7 +200,7 @@ export default {
|
||||||
if (data) {
|
if (data) {
|
||||||
let keyValues = this._handleBatchVars(data);
|
let keyValues = this._handleBatchVars(data);
|
||||||
keyValues.forEach(item => {
|
keyValues.forEach(item => {
|
||||||
this.format(this.headers,item);
|
this.format(this.headers, item);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -229,7 +229,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleClick(command) {
|
handleClick(command) {
|
||||||
this.editData = {delimiter: ",",quotedData: 'false'};
|
this.editData = {delimiter: ",", quotedData: 'false'};
|
||||||
this.editData.type = command;
|
this.editData.type = command;
|
||||||
this.addParameters(this.editData);
|
this.addParameters(this.editData);
|
||||||
},
|
},
|
||||||
|
@ -298,10 +298,32 @@ export default {
|
||||||
this.$warning("请选择一条数据删除");
|
this.$warning("请选择一条数据删除");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
let message = "";
|
||||||
|
ids.forEach(row => {
|
||||||
|
const v = this.variables.find(d => d.id === row);
|
||||||
|
if (v && v.type === 'CSV' && v.name) {
|
||||||
|
message += v.name + ";";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (message !== "") {
|
||||||
|
message = message.substr(0, message.length - 1);
|
||||||
|
this.$alert('是否确认删除CSV:【 ' + message + " 】?", '', {
|
||||||
|
confirmButtonText: this.$t('commons.confirm'),
|
||||||
|
callback: (action) => {
|
||||||
|
if (action === 'confirm') {
|
||||||
ids.forEach(row => {
|
ids.forEach(row => {
|
||||||
const index = this.variables.findIndex(d => d.id === row);
|
const index = this.variables.findIndex(d => d.id === row);
|
||||||
this.variables.splice(index, 1);
|
this.variables.splice(index, 1);
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
ids.forEach(row => {
|
||||||
|
const index = this.variables.findIndex(d => d.id === row);
|
||||||
|
this.variables.splice(index, 1);
|
||||||
|
});
|
||||||
|
}
|
||||||
this.selection = [];
|
this.selection = [];
|
||||||
this.editData = {type: "CONSTANT"};
|
this.editData = {type: "CONSTANT"};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue