鸿宇研学生前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
621 B

// 优惠券相关接口
const api = {
// 优惠券-我的优惠券列表
queryCouponList: {
url: '/coupon/queryCouponList',
method: 'GET',
auth: true,
},
// 优惠券-根据id查看优惠券详情
queryCouponById: {
url: '/coupon/queryCouponById',
method: 'GET',
},
// 优惠券-查看可领取的优惠券
queryFetchCouponList: { // todo: check use in where?
url: '/coupon/queryFetchCouponList',
method: 'GET',
auth: true,
},
// 优惠券-领取优惠券
fetchCoupon: { // todo: check use in where?
url: '/coupon/fetchCoupon',
method: 'POST',
auth: true,
},
}
export default api