1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| // 算法仓库
| import request from '@/axios'
| // 图片列表
| export const getalgorithmList = (data, params) => {
| return request({
| url: `/drone-device-core/aiTmp/list`,
| method: 'post',
| data,
| params
| })
| }
| //机巢查询
| export const selectDeviceList = data => {
| return request({
| url: `/drone-device-core/aiTmp/devices`,
| method: 'get',
| data: data,
| })
| }
|
|