This commit is contained in:
2025-09-26 17:57:28 +08:00
8 changed files with 3304 additions and 2798 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
})
}