增加获取优惠券

This commit is contained in:
2024-11-04 14:52:36 +08:00
parent 1067da51c4
commit a9736e69f1
2 changed files with 23 additions and 2 deletions

View File

@@ -461,3 +461,14 @@ export function $returnTableDetail(data) {
}
});
}
//获取订单可用优惠券
export function $activateByOrderId(data) {
return request({
url: '/api/tbShopCoupon/activateByOrderId',
method: "get",
params:{
shopId: localStorage.getItem("shopId"),
...data
}
});
}