From 5d9c8417283811883d0a28314e2bbb46280fa348 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=93=E6=B4=81?= <209192278@qq.com> Date: Mon, 6 Nov 2023 21:54:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=93=E6=B4=81=20:=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=BB=86=E8=8A=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/custom-query/data-adapter/index.vue | 16 +++- src/views/custom-query/datamodel/index.vue | 54 ++++++++------ src/views/custom-query/sql/index.vue | 66 +++++++++-------- src/views/custom-query/topo/index.vue | 73 +++++++++---------- src/views/monitor/logininfor/index.vue | 17 ++++- src/views/monitor/operlog/index.vue | 19 +++-- 6 files changed, 141 insertions(+), 104 deletions(-) diff --git a/src/views/custom-query/data-adapter/index.vue b/src/views/custom-query/data-adapter/index.vue index beeedf1..f57700d 100644 --- a/src/views/custom-query/data-adapter/index.vue +++ b/src/views/custom-query/data-adapter/index.vue @@ -30,9 +30,9 @@
新增 - + 删除 + 导出
@@ -223,6 +223,16 @@ const handleDelete = async (adapterId) => { } }) } +//多删 +const handleMoreDelete=(adapterIds)=>{ + ElMessageBox.confirm(`确认删除名称为${adapterNameList}的适配器吗?`, '系统提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + handleDelete(adapterIds) + }) +} //勾选table数据行事件 const handleSelect = async (selection) => { if (selection.length !== 0) { diff --git a/src/views/custom-query/datamodel/index.vue b/src/views/custom-query/datamodel/index.vue index 008d4c9..05511bd 100644 --- a/src/views/custom-query/datamodel/index.vue +++ b/src/views/custom-query/datamodel/index.vue @@ -20,8 +20,9 @@
新增 - + 删除 + 导出
@@ -42,14 +43,14 @@