From 6bad08e4aa50c887d43e0e128bdbd49fdb9d52aa Mon Sep 17 00:00:00 2001 From: AgAngle <1323481023@qq.com> Date: Wed, 11 Dec 2024 10:22:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E7=94=A8=E4=BE=8B=E5=88=97=E8=A1=A8=EF=BC=8C?= =?UTF-8?q?=E9=80=89=E4=B8=AD=E6=A8=A1=E5=9D=97=E6=89=B9=E9=87=8F=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=90=8E=E5=88=B7=E6=96=B0=EF=BC=8C=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=8F=98=E6=88=90=E5=85=A8=E9=83=A8=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1034402 --user=陈建星 【测试跟踪】功能用例-选中模块-批量删除当前页数据后-模块仍显示选中状态-列表数据显示所有数据 https://www.tapd.cn/55049933/s/1628313 --- .../frontend/src/business/case/components/TestCaseList.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-track/frontend/src/business/case/components/TestCaseList.vue b/test-track/frontend/src/business/case/components/TestCaseList.vue index 03cb9e4ba9..dd131cfad5 100644 --- a/test-track/frontend/src/business/case/components/TestCaseList.vue +++ b/test-track/frontend/src/business/case/components/TestCaseList.vue @@ -1158,8 +1158,7 @@ export default { if (action === "confirm") { let param = buildBatchParam(this, this.$refs.table.selectIds); testCaseBatchDeleteToGc(param).then(() => { - this.clearTableSelect(); - this.$emit("refresh"); + this.refresh(); this.$success(this.$t("commons.delete_success"), false); }); }