diff --git a/frontend/src/business/components/performance/report/components/TestOverview.vue b/frontend/src/business/components/performance/report/components/TestOverview.vue index 91fab4b2d9..b5b7e31fe3 100644 --- a/frontend/src/business/components/performance/report/components/TestOverview.vue +++ b/frontend/src/business/components/performance/report/components/TestOverview.vue @@ -122,7 +122,6 @@ export default { props: ['report', 'export', 'isShare', 'shareId', 'planReportTemplate'], methods: { initTableData() { - this.initData(); if (this.planReportTemplate) { let data = this.planReportTemplate.loadOverview; this.buildInfo(data); @@ -140,13 +139,6 @@ export default { this.getErrorChart(); this.getResponseCodeChart(); }, - initData() { - this.buildInfo(); - // this.loadOption = {}; - // this.resOption = {}; - // this.errorOption = {}; - // this.resCodeOption = {}; - }, buildInfo(data) { this.maxUsers = data ? data.maxUsers : '0'; this.avgThroughput = data ? data.avgThroughput : '0';