Browse Source

监控区域定义UI调整

master
DIAMOND 9 months ago
parent
commit
edb2dc1904
  1. 28
      src/views/military/modules/ai/monitorArea/DtMonitorAreaList.vue

28
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),
// },
// },
];
}

Loading…
Cancel
Save