| 12345678910111213141516 |
- const http = uni.$u.http
- // get请求 查询可领取的优惠劵列表
- export const getUserDiscountsList = (params, config = {}) => http.get('/business/wechat/getUserDiscountsList', params, config)
- // get请求 我的优惠卷列表(0未使用, 1已使用, 2已过期 null查询全部)
- export const getMyCouponList = (params, config = {}) => http.get('/member/wechat/getCoupon', params, config)
- // get请求 查询可使用的优惠券
- export const getCanUseCouponList = (params, config = {}) => http.post('/member/wechat/getMemberCoupon', params, config)
- // post请求 领取优惠券
- export const claimCoupon = (params, config = {}) => http.post('/member/wechat/claimCoupon', params, config)
|