mirror of
https://github.com/likeshop-github/likeshop.git
synced 2024-11-15 05:05:09 +08:00
56 lines
No EOL
916 B
JavaScript
56 lines
No EOL
916 B
JavaScript
import request from '@/utils/request'
|
|
import{client} from '@/utils/tools'
|
|
|
|
//下单
|
|
export function orderBuy(data) {
|
|
return request.post("order/buy", data);
|
|
}
|
|
//删除订单
|
|
export function delOrder(id) {
|
|
return request.post('order/del', {
|
|
id
|
|
})
|
|
}
|
|
//订单列表
|
|
export function getOrderList(data) {
|
|
return request.get('order/lists', {
|
|
params: data
|
|
})
|
|
}
|
|
//订单详情
|
|
export function getOrderDetail(id) {
|
|
return request.get('order/detail', {
|
|
params: {
|
|
id
|
|
}
|
|
})
|
|
}
|
|
|
|
//取消订单
|
|
export function cancelOrder(id) {
|
|
return request.post('order/cancel', {
|
|
id
|
|
})
|
|
}
|
|
|
|
//物流
|
|
export function orderTraces(id) {
|
|
return request.get("order/orderTraces", {
|
|
params: {
|
|
id
|
|
}
|
|
})
|
|
}
|
|
|
|
//确认收货
|
|
export function confirmOrder(id) {
|
|
return request.post("order/confirm", {
|
|
id
|
|
})
|
|
}
|
|
|
|
|
|
//下单获取优惠券
|
|
export function getOrderCoupon(data) {
|
|
return request.post("coupon/orderCoupon", data);
|
|
}
|