fix: 修复接口测试监控响应码图表不显示的问题

This commit is contained in:
BugKing 2020-11-30 20:44:58 +08:00
parent 0acc2a915d
commit 6a4f78d2fe
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ export default {
{'apiUrl': this.apiUrl}, response => {
Object.values(response.data).forEach(value => {
this.rspCodexAxis.push(value.startTime);
this.rspCodeData.push(value.responseTime);
this.rspCodeData.push(value.responseCode);
});
});
},