29 lines
557 B
JavaScript
29 lines
557 B
JavaScript
/*
|
|
* @Author: zwq
|
|
* @Date: 2020-12-29 16:00:14
|
|
* @LastEditors: zwq
|
|
* @LastEditTime: 2022-01-12 16:23:00
|
|
* @Description:
|
|
*/
|
|
import request from '@/utils/request'
|
|
|
|
export function HistoricalTaskList(data) { // 获取任务列表
|
|
return request({
|
|
url: '/api/wms/car/task/execution/info/his/page',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
export function HistoricalTaskDetail(id) { // 获取任务单条数据
|
|
const data = {
|
|
'id': id
|
|
}
|
|
return request({
|
|
url: '/api/wms/car/task/execution/info/his/get',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|