You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
435 B
26 lines
435 B
// 查询列表页接口
|
|
const getOrderDetailPage = (params) => {
|
|
return $axios({
|
|
url: '/order/page',
|
|
method: 'get',
|
|
params
|
|
})
|
|
}
|
|
|
|
// 查看接口
|
|
const queryOrderDetailById = (id) => {
|
|
return $axios({
|
|
url: `/orderDetail/${id}`,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 取消,派送,完成接口
|
|
const editOrderDetail = (params) => {
|
|
return $axios({
|
|
url: '/order',
|
|
method: 'put',
|
|
data: { ...params }
|
|
})
|
|
}
|