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.
24 lines
579 B
24 lines
579 B
4 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// api地址
|
||
|
const api = {
|
||
|
list: 'sharp.goods/list',
|
||
|
detail: 'sharp.goods/detail',
|
||
|
poster: 'sharp.goods/poster'
|
||
|
}
|
||
|
|
||
|
// 秒杀活动商品列表
|
||
|
export const list = (activeTimeId, param, option) => {
|
||
|
return request.get(api.list, { activeTimeId, ...param }, option)
|
||
|
}
|
||
|
|
||
|
// 获取活动商品详情
|
||
|
export const detail = (activeTimeId, sharpGoodsId, param) => {
|
||
|
return request.get(api.detail, { activeTimeId, sharpGoodsId, ...param })
|
||
|
}
|
||
|
|
||
|
// 生成商品海报
|
||
|
export const poster = param => {
|
||
|
return request.get(api.poster, param)
|
||
|
}
|