From edb2dc190411369ca7954e92bbc3f993613a0ac1 Mon Sep 17 00:00:00 2001 From: DIAMOND <276397553@qq.com> Date: Fri, 15 Dec 2023 15:21:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=91=E6=8E=A7=E5=8C=BA=E5=9F=9F=E5=AE=9A?= =?UTF-8?q?=E4=B9=89UI=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ai/monitorArea/DtMonitorAreaList.vue | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/views/military/modules/ai/monitorArea/DtMonitorAreaList.vue b/src/views/military/modules/ai/monitorArea/DtMonitorAreaList.vue index 234dfb7..c0f7afc 100644 --- a/src/views/military/modules/ai/monitorArea/DtMonitorAreaList.vue +++ b/src/views/military/modules/ai/monitorArea/DtMonitorAreaList.vue @@ -127,7 +127,7 @@ canResize: false, useSearchForm: false, actionColumn: { - width: 290, + width: 300, fixed: 'right', }, beforeFetch: (params) => { @@ -256,6 +256,10 @@ label: '联动设备', onClick: handleLinkageDeviceList.bind(null, record), }, + { + label: '删除', + onClick: handleDelete.bind(null, record), + } ]; } @@ -264,17 +268,17 @@ */ function getDropDownAction(record) { return [ - { - label: '详情', - onClick: handleDetail.bind(null, record), - }, - { - label: '删除', - popConfirm: { - title: '是否确认删除', - confirm: handleDelete.bind(null, record), - }, - }, + // { + // label: '详情', + // onClick: handleDetail.bind(null, record), + // }, + // { + // label: '删除', + // popConfirm: { + // title: '是否确认删除', + // confirm: handleDelete.bind(null, record), + // }, + // }, ]; }