fix: --bug=1006756 --user=陈建星 【测试计划】关联测试用例,先勾选,查询后清空勾选状态再次勾选,出现重复关联测试用例 https://www.tapd.cn/55049933/s/1048377
This commit is contained in:
parent
4d71617279
commit
f84b363aff
|
@ -781,7 +781,7 @@ public class TestPlanReportService {
|
||||||
sendMessage(report, testPlan.getProjectId());
|
sendMessage(report, testPlan.getProjectId());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
LogUtil.error(e);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
}
|
}
|
||||||
|
|
|
@ -287,6 +287,7 @@
|
||||||
if (this.$refs.apitable) {
|
if (this.$refs.apitable) {
|
||||||
this.$refs.apitable.doLayout();
|
this.$refs.apitable.doLayout();
|
||||||
this.$refs.apitable.checkTableRowIsSelect();
|
this.$refs.apitable.checkTableRowIsSelect();
|
||||||
|
this.$refs.apitable.clear();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -225,6 +225,7 @@ export default {
|
||||||
if (this.$refs.table) {
|
if (this.$refs.table) {
|
||||||
this.$refs.table.doLayout();
|
this.$refs.table.doLayout();
|
||||||
this.$refs.table.checkTableRowIsSelect();
|
this.$refs.table.checkTableRowIsSelect();
|
||||||
|
this.$refs.table.clear();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -162,6 +162,7 @@
|
||||||
item.tags = JSON.parse(item.tags);
|
item.tags = JSON.parse(item.tags);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
this.clear();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
clear() {
|
clear() {
|
||||||
|
|
|
@ -222,6 +222,9 @@ export default {
|
||||||
item.checked = false;
|
item.checked = false;
|
||||||
item.tags = JSON.parse(item.tags);
|
item.tags = JSON.parse(item.tags);
|
||||||
});
|
});
|
||||||
|
if (this.$refs.table) {
|
||||||
|
this.$refs.table.clear();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -196,6 +196,11 @@ export default {
|
||||||
let data = response.data;
|
let data = response.data;
|
||||||
this.total = data.itemCount;
|
this.total = data.itemCount;
|
||||||
this.testCases = data.listObject;
|
this.testCases = data.listObject;
|
||||||
|
|
||||||
|
this.selectIds.clear();
|
||||||
|
if (this.$refs.table) {
|
||||||
|
this.$refs.table.clearSelection();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (this.reviewId) {
|
if (this.reviewId) {
|
||||||
|
|
Loading…
Reference in New Issue