| | |
| | | import request from '@/axios'; |
| | | import request from '@/axios' |
| | | |
| | | // 机巢聚合 |
| | | export const getDeviceRegionCount = (params) => { |
| | | return request({ |
| | | url: '/drone-device-core/manage/api/v1/devices/getDeviceRegionCount', |
| | | method: 'get', |
| | | params |
| | | }); |
| | | }; |
| | | export const getDeviceRegionCount = params => { |
| | | return request({ |
| | | url: '/drone-device-core/manage/api/v1/devices/getDeviceRegionCount', |
| | | method: 'get', |
| | | params, |
| | | }) |
| | | } |
| | | |
| | | // 机巢散点 |
| | | export const getDeviceRegion = (params) => { |
| | | return request({ |
| | | url: '/drone-device-core/manage/api/v1/devices/getDeviceRegion', |
| | | method: 'get', |
| | | params |
| | | }); |
| | | }; |
| | | export const getDeviceRegion = params => { |
| | | return request({ |
| | | url: '/drone-device-core/manage/api/v1/devices/getDeviceRegion', |
| | | method: 'get', |
| | | params, |
| | | }) |
| | | } |
| | | |
| | | // 事件聚合 和 事件散点 |
| | | export const getMapEvents = (data) => { |