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 const fwTaskSchedulePageApi = params => {
| return request({
| url: `/drone-fw/detection/fwTaskSchedule/page`,
| method: 'get',
| params: { descs: 'update_time', ...params },
| })
| }
|
| // 查询任务调度详情
| export const fwTaskScheduleDetailApi = params => {
| return request({
| url: `/drone-fw/detection/fwTaskSchedule/detail`,
| method: 'get',
| params,
| })
| }
|
| // 新增或修改任务调度
| export const fwTaskScheduleSubmitApi = data => {
| return request({
| url: `/drone-fw/detection/fwTaskSchedule/submit`,
| method: 'post',
| data,
| })
| }
|
| // 逻辑删除任务调度
| export const fwTaskScheduleRemoveApi = params => {
| return request({
| url: `/drone-fw/detection/fwTaskSchedule/remove`,
| method: 'post',
| params,
| })
| }
|
| export const fwDeviceListByTask = params => {
| return request({
| url: `/drone-fw/device/fwDevice/listByTask`,
| method: 'get',
| params,
| })
| }
|
|