This commit is contained in:
liqiang-fit2cloud 2023-01-09 12:56:36 +08:00
commit 8abd1710a9
8 changed files with 9 additions and 12 deletions

View File

@ -307,6 +307,11 @@ public class ApiJMeterFileService {
if (CollectionUtils.isNotEmpty(request.getBodyFiles())) { if (CollectionUtils.isNotEmpty(request.getBodyFiles())) {
for (BodyFile bodyFile : request.getBodyFiles()) { for (BodyFile bodyFile : request.getBodyFiles()) {
File file = new File(bodyFile.getName()); File file = new File(bodyFile.getName());
if (!file.exists()) {
// 从MinIO下载
ApiFileUtil.downloadFile(bodyFile.getId(), bodyFile.getName());
file = new File(bodyFile.getName());
}
if (file != null && file.exists()) { if (file != null && file.exists()) {
byte[] fileByte = FileUtils.fileToByte(file); byte[] fileByte = FileUtils.fileToByte(file);
if (fileByte != null) { if (fileByte != null) {

View File

@ -689,6 +689,7 @@ export default {
let definitionData = this.$router.resolve({ let definitionData = this.$router.resolve({
name: 'ApiDefinitionWithQuery', name: 'ApiDefinitionWithQuery',
params: { params: {
versionId: 'default',
redirectID: getUUID(), redirectID: getUUID(),
dataType: 'api', dataType: 'api',
dataSelectRange: 'edit:' + resource.id, dataSelectRange: 'edit:' + resource.id,

View File

@ -81,7 +81,7 @@ export default {
showVersionSelector: false, showVersionSelector: false,
}; };
}, },
created() { activated() {
this.initVersions(); this.initVersions();
this.$nextTick(() => { this.$nextTick(() => {
this.refreshAllCard(); this.refreshAllCard();

View File

@ -206,9 +206,6 @@ export default {
}, },
}; };
}, },
activated() {
this.search();
},
methods: { methods: {
search(versionId) { search(versionId) {
this.loading = true; this.loading = true;

View File

@ -207,9 +207,6 @@ export default {
}, },
}; };
}, },
activated() {
this.search();
},
methods: { methods: {
search(versionId) { search(versionId) {
this.loading = true; this.loading = true;

View File

@ -160,9 +160,6 @@ export default {
}, },
}; };
}, },
activated() {
this.search();
},
methods: { methods: {
search(versionId) { search(versionId) {
this.loading = true; this.loading = true;

View File

@ -1337,7 +1337,7 @@ const message = {
one_click_sync: "One-click sync", one_click_sync: "One-click sync",
change_notification: "Change Notification", change_notification: "Change Notification",
recipient: "Recipient", recipient: "Recipient",
recipient_tips: "When the API changes, the associated CASE creator and automation scene creator will receive in-site messages,can go to", recipient_tips: "When the API changes, the associated CASE creator and automation scene creator will receive in-site messages, can go to",
select_comp: { select_comp: {
no_data: "No Data", no_data: "No Data",
add_data: "Add Data" add_data: "Add Data"

View File

@ -1345,7 +1345,7 @@ const message = {
one_click_sync: "一键同步", one_click_sync: "一键同步",
change_notification: "变更通知", change_notification: "变更通知",
recipient: "接收人", recipient: "接收人",
recipient_tips: "当API发生变化时关联的CASE创建人、自动化场景创建人会收到站内消息,可前往", recipient_tips: "当API发生变化时关联的CASE创建人、自动化场景创建人会收到站内消息可前往",
select_comp: { select_comp: {
no_data: "无数据", no_data: "无数据",
add_data: "去添加" add_data: "去添加"