Commit 2a71b9bf authored by fit2-zhao's avatar fit2-zhao Committed by fit2-zhao
Browse files

fix (接口定义): 修复case执行问题

parent ec9f05c7
Showing with 2 additions and 1 deletion
+2 -1
...@@ -399,7 +399,8 @@ export default { ...@@ -399,7 +399,8 @@ export default {
this.runData.push(row.request); this.runData.push(row.request);
/*触发执行操作*/ /*触发执行操作*/
this.reportId = getUUID().substring(0, 8); this.reportId = getUUID().substring(0, 8);
this.$emit("refreshCase", row.id); this.testCaseId = row.id ? row.id : row.request.id;
this.$emit("refreshCase", this.testCaseId);
}, },
stop(id) { stop(id) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment