zs
2025-05-16 98ea0648f9373679de108ccbab5dcc97c2f0c67c
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
  })
}