| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import https from '@/plugins/luch-request_0.0.7/request'
- /** *
- * 优惠券列表 m
- */
- export const getList = data => {
- return https.get('/coupon/list', data)
- }
- /** *
- * 优惠券列表 w
- */
- export const shopCouponList = data => {
- return https.get('/shop-coupon/list', data)
- }
- /** *
- * 优惠券列表 w
- */
- export const shopHouponHas = data => {
- return https.get('/shop-coupon/has', data)
- }
- /** *
- * 优惠券列表 b
- */
- export const getListB = data => {
- return https.get('/coupon/list', data)
- }
- /** *
- * 新人优惠券设置的详情 b
- */
- export const couponAssetDet = data => {
- return https.get('/coupon-asset/detail', data)
- }
- /** *
- * 奖励设置详情 b
- */
- export const couponAssetUpdate = data => {
- return https.post('/coupon-asset/update', data)
- }
- /** *
- * 门店领取优惠券 m
- */
- export const receiveGift = data => {
- return https.post('/invite/get-new-gift', data)
- }
- export const ghsSendHb = data => {
- return https.get('/shop-coupon/ghs-send-hb', data)
- }
|