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
| 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',
| })
| }
|
|