From 97b3cbc7eb83977268c538c17ad7019c2b0ea78a Mon Sep 17 00:00:00 2001 From: wangshaoping Date: Thu, 7 Aug 2025 17:13:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=BA=E7=A1=80=E6=A1=86=E6=9E=B6=E5=8F=91?= =?UTF-8?q?=E5=B8=83:=208.2.30=20=20=201)=20=E6=94=AF=E6=8C=81=20jxls=20?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=20excel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 前端核心发布: 8.2.115 1) 修改默认导出功能 --- .../src/views/shared/TestCaseGrid.vue | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue b/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue index bb0306ae..156754c9 100644 --- a/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue +++ b/io.sc.engine.rule.frontend/src/views/shared/TestCaseGrid.vue @@ -205,18 +205,7 @@ const actionMap = { const getActions = () => { if (Tools.isNill(props.owner)) { - return [ - 'query', - 'separator', - 'refresh', - actionMap['execute'], - actionMap['executeAll'], - [actionMap['batchTest'], actionMap['upload']], - 'separator', - 'view', - 'separator', - 'export', - ]; + return ['query', 'separator', 'refresh', actionMap['execute'], actionMap['executeAll'], [actionMap['batchTest'], actionMap['upload']], 'separator', 'view']; } else { return [ 'refresh', @@ -230,8 +219,6 @@ const getActions = () => { [actionMap['batchTest'], actionMap['download'], actionMap['upload']], 'separator', 'view', - 'separator', - 'export', ]; } };