fix(接口测试): 修复场景步骤中含有302内容数据时无法远程异步加载步骤内容的问题

修复场景步骤中含有302内容数据时无法远程异步加载步骤内容的问题
This commit is contained in:
song-tianyang 2022-05-27 17:20:16 +08:00 committed by fit2-zhao
parent d58ca07a2c
commit fae7525f2e
1 changed files with 4 additions and 9 deletions

View File

@ -260,20 +260,15 @@ export default {
element.parentNode.removeChild(element);
},
loadRequestInfoExpand() {
if( !this.request.responseResult || (!this.request.responseResult.body && this.request.responseResult.body === null)){
if (!this.request.responseResult || this.request.responseResult.body === null || this.request.responseResult.body === undefined) {
this.$get("/api/scenario/report/selectReportContent/" + this.stepId, response => {
let requestResult = response.data;
if (requestResult) {
this.requestInfo = requestResult;
}
this.requestInfo = response.data;
this.$nextTick(() => {
this.requestInfo.loading = false;
});
});
}else {
if (this.request.responseResult && (this.request.responseResult.body || this.request.responseResult.body === '')) {
this.requestInfo = this.request;
}
} else {
this.requestInfo = this.request;
}
},
active() {