123456789101112131415161718192021222324252627282930313233 |
- import { request } from '@/api/config.js'
- // 我的优惠券列表
- export function couponListApi(data) {
- return request({
- url: '/wx/coupon/mylist',
- method: 'get',
- data: data,
- })
- }
- export function couponCenter(data) {
- return request({
- url: '/wx/coupon/center',
- method: 'get',
- data: data,
- })
- }
- export function couponReceive(data) {
- return request({
- url: '/wx/coupon/receive',
- method: 'post',
- data: data,
- })
- }
- export function buyCouponListApi(data) {
- return request({
- url: '/wx/coupon/buy/list',
- method: 'get',
- data: data,
- })
- }
|