diff --git a/frontend/src/business/components/api/automation/report/ApiReportList.vue b/frontend/src/business/components/api/automation/report/ApiReportList.vue index f26eda2ed4..f4aedc38b4 100644 --- a/frontend/src/business/components/api/automation/report/ApiReportList.vue +++ b/frontend/src/business/components/api/automation/report/ApiReportList.vue @@ -159,6 +159,10 @@ export default { }, handleView(report) { this.reportId = report.id; + if(report.status ==='Running'){ + this.$warning("正在运行中,请稍后查看") + return; + } this.currentProjectId = report.projectId; this.$router.push({ path: 'report/view/' + report.id,