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.
23 lines
535 B
23 lines
535 B
import request from '@/utils/request'
|
|
|
|
// api地址
|
|
const api = {
|
|
detail: 'shop.order/detail',
|
|
extract: 'shop.order/extract',
|
|
hexiao: 'shop.order/hexiao'
|
|
}
|
|
|
|
// 核销订单详情 [只有店员才能查看]
|
|
export function detail(orderId, param) {
|
|
return request.get(api.detail, { orderId, ...param })
|
|
}
|
|
|
|
// 确认核销 [已取货]
|
|
export function extract(orderId, param) {
|
|
return request.post(api.extract, { orderId, ...param })
|
|
}
|
|
|
|
export function hexiao(orderId, Id) {
|
|
return request.post(api.hexiao, { orderId, Id })
|
|
}
|
|
|