zs
2025-06-04 37bb9829b97a98fc1e02c166656c943165e0c614
1
2
3
4
5
6
7
8
9
10
11
12
import request from '@/api/api.js'
import qs from 'qs'
 
 
// 点到点搬运 /api/wcsToWms/pointHandlingTask
export function pointHandlingTask (data) {
  return request({
    url: `/api/wcsToWms/pointHandlingTask`,
    method: 'post',
    data
  })
}