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.
17 lines
403 B
17 lines
403 B
11 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// api地址
|
||
|
const api = {
|
||
|
list: 'coupon/list'
|
||
|
}
|
||
|
|
||
|
// 优惠券列表
|
||
|
export const list = (param, option) => {
|
||
|
const options = {
|
||
|
isPrompt: true, //(默认 true 说明:本接口抛出的错误是否提示)
|
||
|
load: true, //(默认 true 说明:本接口是否提示加载动画)
|
||
|
...option
|
||
|
}
|
||
|
return request.get(api.list, param, options)
|
||
|
}
|