Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
14a6b787e0
|
@ -101,14 +101,10 @@
|
||||||
name: this.condition
|
name: this.condition
|
||||||
};
|
};
|
||||||
|
|
||||||
this.$post(this.buildPagePath(this.queryPath), param).then(response => {
|
this.$post(this.buildPagePath(this.queryPath), param, response => {
|
||||||
if (response.data.success) {
|
let data = response.data;
|
||||||
let data = response.data.data;
|
|
||||||
this.total = data.itemCount;
|
this.total = data.itemCount;
|
||||||
this.tableData = data.listObject;
|
this.tableData = data.listObject;
|
||||||
} else {
|
|
||||||
this.$message.error(response.message);
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
search() {
|
search() {
|
||||||
|
@ -151,16 +147,12 @@
|
||||||
id: testPlan.id
|
id: testPlan.id
|
||||||
};
|
};
|
||||||
|
|
||||||
this.$post(this.deletePath, data).then(response => {
|
this.$post(this.deletePath, data, () => {
|
||||||
if (response.data.success) {
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '删除成功!',
|
message: '删除成功!',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
this.initTableData();
|
this.initTableData();
|
||||||
} else {
|
|
||||||
this.$message.error(response.message);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
listProjects() {
|
listProjects() {
|
||||||
this.$get(this.listProjectPath).then(response => {
|
this.$get(this.listProjectPath, response => {
|
||||||
this.projects = response.data.data;
|
this.projects = response.data;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
save() {
|
save() {
|
||||||
|
@ -88,13 +88,11 @@
|
||||||
|
|
||||||
let options = this.getSaveOption();
|
let options = this.getSaveOption();
|
||||||
|
|
||||||
this.$request(options).then(response => {
|
this.$request(options, () => {
|
||||||
if (response) {
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '保存成功!',
|
message: '保存成功!',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
saveAndRun() {
|
saveAndRun() {
|
||||||
|
@ -104,8 +102,7 @@
|
||||||
|
|
||||||
let options = this.getSaveOption();
|
let options = this.getSaveOption();
|
||||||
|
|
||||||
this.$request(options).then(response => {
|
this.$request(options, () => {
|
||||||
if (response) {
|
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '保存成功!',
|
message: '保存成功!',
|
||||||
type: 'success'
|
type: 'success'
|
||||||
|
@ -117,7 +114,6 @@
|
||||||
type: 'success'
|
type: 'success'
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
getSaveOption() {
|
getSaveOption() {
|
||||||
|
|
|
@ -72,8 +72,8 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getFileMetadata(testPlan) {
|
getFileMetadata(testPlan) {
|
||||||
this.$get(this.getFileMetadataPath + "/" + testPlan.id).then(response => {
|
this.$get(this.getFileMetadataPath + "/" + testPlan.id, response => {
|
||||||
let file = response.data.data;
|
let file = response.data;
|
||||||
|
|
||||||
this.testPlan.file = file;
|
this.testPlan.file = file;
|
||||||
|
|
||||||
|
@ -115,8 +115,7 @@
|
||||||
name: file.name
|
name: file.name
|
||||||
};
|
};
|
||||||
|
|
||||||
this.$post(this.jmxDownloadPath, data).then(response => {
|
this.$post(this.jmxDownloadPath, data, response => {
|
||||||
if (response) {
|
|
||||||
const content = response.data;
|
const content = response.data;
|
||||||
const blob = new Blob([content]);
|
const blob = new Blob([content]);
|
||||||
if ("download" in document.createElement("a")) {
|
if ("download" in document.createElement("a")) {
|
||||||
|
@ -131,9 +130,6 @@
|
||||||
// IE10+下载
|
// IE10+下载
|
||||||
navigator.msSaveBlob(blob, this.filename)
|
navigator.msSaveBlob(blob, this.filename)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}).catch((response) => {
|
|
||||||
this.$message.error(response.message);
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleDelete(file, index) {
|
handleDelete(file, index) {
|
||||||
|
|
Loading…
Reference in New Issue