From eea9216a334fe72b4029b33f83b830e07507fc2d Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Mon, 20 Feb 2023 15:08:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E5=A4=8D=E5=88=B6=E7=94=A8=E4=BE=8B=E5=BA=93=E7=94=A8=E4=BE=8B?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E6=9C=89=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1023407 --user=陈建星 【测试跟踪】功能用例-公共用例库列表-操作-复制/批量复制-弹框提示信息错误 https://www.tapd.cn/55049933/s/1338343 --- .../business/case/components/public/PublicTestCaseList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-track/frontend/src/business/case/components/public/PublicTestCaseList.vue b/test-track/frontend/src/business/case/components/public/PublicTestCaseList.vue index 445f867303..49518909d8 100644 --- a/test-track/frontend/src/business/case/components/public/PublicTestCaseList.vue +++ b/test-track/frontend/src/business/case/components/public/PublicTestCaseList.vue @@ -524,7 +524,7 @@ export default { }, handleCopyPublic(testCase) { this.$refs.table.selectIds.push(testCase.id); - this.$refs.testBatchMove.open(false, testCase.name, this.treeNodes, this.$refs.table.selectIds, this.moduleOptions); + this.$refs.testBatchMove.open(false, testCase.name, this.treeNodes, 1, this.$refs.table.selectIds, this.moduleOptions); }, refresh() { this.$refs.table.clear(); @@ -556,7 +556,7 @@ export default { }, handleBatchCopy() { let firstSelectRow = this.$refs.table.selectRows.values().next().value; - this.$refs.testBatchMove.open(false, firstSelectRow.name, this.treeNodes, this.$refs.table.selectIds, this.moduleOptions); + this.$refs.testBatchMove.open(false, firstSelectRow.name, this.treeNodes, this.$refs.table.selectIds.length, this.$refs.table.selectIds, this.moduleOptions); }, copyPublic(param) { param.condition = this.condition;