| | |
| | | } |
| | | |
| | | // 大屏首页=>事件分页列表 |
| | | export const getEventPage = data => { |
| | | export const getEventPage = (data,params) => { |
| | | return request({ |
| | | url: '/drone-device-core/jobEvent/eventPage', |
| | | method: 'post', |
| | | data, |
| | | params |
| | | }) |
| | | } |
| | | |
| | | |
| | | // 大屏首页=>事件状态数量 |
| | | export const getEventStatusNum = data => { |
| | | return request({ |
| | | url: '/drone-device-core/jobEvent/eventStatusNum', |
| | | method: 'post', |
| | | data, |
| | | }) |
| | | } |
| | | |
| | | // 工单列表=>事件数量(所有) |
| | | export const getEvenNum = data => { |
| | | return request({ |
| | | url: '/drone-device-core/jobEvent/evenNum', |
| | | method: 'post', |
| | | data, |
| | | }) |
| | | } |
| | | // 点击图片关联的事件历史图片列表 |
| | | export const findImgHistory = id => { |
| | | return request({ |
| | | url: '/drone-device-core/jobEvent/findImgHistory?eventId='+id, |
| | | method: 'get', |
| | | }) |
| | | } |
| | | |