对接优惠券弹窗

This commit is contained in:
gyq
2025-09-26 10:55:45 +08:00
parent 84f782afa1
commit c6dbd6d62b
9 changed files with 3263 additions and 2771 deletions

View File

@@ -112,4 +112,31 @@ export const APIshopUsercode = (data) => {
method: 'get',
data: data
})
}
// 获取当前店铺会员信息
export const getCouponShops = (data) => {
return request({
url: urlMarket + '/user/coupon/shops',
method: 'get',
data: data
})
}
// 优惠券弹窗
export const getCouponPopup = (data) => {
return request({
url: urlMarket + '/user/coupon/popUp',
method: 'get',
data: data
})
}
// 优惠券弹窗领取
export const receivePopUp = (data) => {
return request({
url: urlMarket + '/user/coupon/receivePopUp',
method: 'get',
data: data
})
}