| | |
| | | }); |
| | | }; |
| | | |
| | | export const getApiList = (current, size) => { |
| | | export const getApiList = (current, size,params) => { |
| | | return request({ |
| | | url: '/blade-log/api/list', |
| | | url: '/blade-log/api/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | | }); |
| | | }; |
| | | |
| | | export const getErrorList = (current, size) => { |
| | | export const getErrorList = (current, size,params) => { |
| | | return request({ |
| | | url: '/blade-log/error/list', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | }, |
| | |
| | | }, |
| | | }); |
| | | }; |
| | | |
| | | // 历史轨迹记录 |
| | | export const getHistoryTrack = (params) => { |
| | | return request({ |
| | | url: '/drone-device-core/log/droneFlightLog/page', |
| | | method: 'get', |
| | | params |
| | | }) |
| | | } |