Files
rd_mes_uniapp/api/les/lesMaterialCall.js

26 lines
394 B
JavaScript
Raw Permalink Normal View History

2025-12-19 16:40:25 +08:00
import request from '@/utils/request'
/**
* 新增任务
* @param {Object} data
* @return
*/
export function addDeliveryTask(data) {
return request({
url: '/les/deliveryTask',
method: 'post',
data: data,
})
}
/**
*
* @param {code}
* @return
*/
export function findPreparation(code) {
return request({
url: '/les/location/findPreparation/' + code,
method: 'get',
})
}