吉安感知网项目-前端
shuishen
5 days ago 6e88705bd5b443a259b24c17c8a299765d059d96
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import request from '@/axios'
 
// 飞手分页查询
export function getFlyingHandPage(params) {
    return request({
        url: '/drone-gd/flyer/gdFlyer/page',
        method: 'get',
        params: { descs: 'create_time', ...params },
    })
}
 
// 飞手提交
export function submitFlyingHand(data) {
    return request({
        url: '/drone-gd/flyer/gdFlyer/submit',
        method: 'post',
        data
    })
}
 
// 飞手详情查询
export function getFlyingHandDetail(params) {
    return request({
        url: '/drone-gd/flyer/gdFlyer/detail',
        method: 'get',
        params
    })
}
 
// 飞手删除
export function removeFlyingHand(data) {
    return request({
        url: `/drone-gd/flyer/gdFlyer/remove?ids=${data.ids}`,
        method: 'post',
    })
}
 
// 查看所有已经建档飞手
export function getAllFlyerIds(params) {
    return request({
        url: '/drone-gd/flyer/gdFlyer/allFlyerIds',
        method: 'get',
        params
    })
}