代码更新

This commit is contained in:
2023-04-18 14:02:15 +08:00
parent 8bf407e5f0
commit ad64980050
8 changed files with 589 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import request from '@/utils/request'
export function queryDeviceInfo(data) { // 获取设备信息
return request({
url: 'api/wms/task/queryDeviceInfo',
method: 'post',
data: data
})
}
export function sendAgvChargeTask(data) { // 下发AGV充电任务
return request({
url: 'api/wms/task/sendAgvChargeTask',
method: 'post',
data: data
})
}