You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
973 B
JavaScript
34 lines
973 B
JavaScript
4 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// api地址
|
||
|
const api = {
|
||
|
list: 'clientApi/myCoupon/list',
|
||
|
mydetail: 'clientApi/userCouponApi/detail',
|
||
|
detail: 'clientApi/coupon/detail'
|
||
|
}
|
||
|
|
||
|
// 会员卡券列表
|
||
|
export const list = (param, option) => {
|
||
|
const options = {
|
||
|
isPrompt: true, //(默认 true 说明:本接口抛出的错误是否提示)
|
||
|
load: true, //(默认 true 说明:本接口是否提示加载动画)
|
||
|
...option
|
||
|
}
|
||
|
return request.get(api.list, param, options)
|
||
|
}
|
||
|
|
||
|
// 卡券详情
|
||
|
export function detail(couponId, userCouponId, userCouponCode) {
|
||
|
if (parseInt(userCouponId) > 0 || userCouponCode.length > 0) {
|
||
|
if (userCouponId == undefined) {
|
||
|
userCouponId = 0
|
||
|
}
|
||
|
if (userCouponCode == undefined) {
|
||
|
userCouponCode = ""
|
||
|
}
|
||
|
return request.get(api.mydetail, { userCouponId, userCouponCode })
|
||
|
} else {
|
||
|
return request.post(api.detail, { couponId })
|
||
|
}
|
||
|
}
|