1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| export const getAreaDataByAlgorithmKeysApi = (data) => {
| return window._request({
| url: `/drone-device-core/layer/api/v1/getAreaDataByAlgorithmKeys`,
| method: 'post',
| data,
| })
| }
|
| // 获取执行任务航线详情
| export const getJobWayLineDetails = params => {
| return window._request({
| url: '/drone-device-core/wayline/waylineJobInfo/jobWaylineDetails',
| method: 'get',
| params,
| })
| }
|
|