From c06205aacc771184b7eee21e243e178fc3a67183 Mon Sep 17 00:00:00 2001 From: song-cc-rock Date: Thu, 23 Mar 2023 10:54:45 +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=8E=BB=E6=8E=89=E8=A1=8C?= =?UTF-8?q?=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/business/case/components/TestCaseList.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test-track/frontend/src/business/case/components/TestCaseList.vue b/test-track/frontend/src/business/case/components/TestCaseList.vue index 0ffb1dc089..11dd268315 100644 --- a/test-track/frontend/src/business/case/components/TestCaseList.vue +++ b/test-track/frontend/src/business/case/components/TestCaseList.vue @@ -46,7 +46,6 @@ :highlight-current-row="true" :refresh-by-search.sync="refreshBySearch" @handlePageChange="initTableData" - @handleRowClick="intoEdit" @order="initTableData" @filter="search" @callBackSelect="callBackSelect" @@ -865,9 +864,6 @@ export default { reloadTable() { this.$refs.table.resetHeader(); }, - intoEdit(row) { - this.handleEdit(row); - }, handleEdit(testCase) { openCaseEdit({caseId: testCase.id}, this); },