2021-05-13 11:03:32 +08:00
|
|
|
/**
|
|
|
|
* 促销相关API
|
|
|
|
*/
|
2021-06-04 18:11:34 +08:00
|
|
|
import { http, Method } from "@/utils/request.js";
|
2021-05-13 11:03:32 +08:00
|
|
|
|
2021-06-04 18:11:34 +08:00
|
|
|
/**
|
|
|
|
* 获取当前直播列表
|
|
|
|
*
|
|
|
|
* @param {*}
|
|
|
|
* @returns
|
|
|
|
*/
|
2021-06-16 18:11:38 +08:00
|
|
|
export function getLiveList(params) {
|
2021-06-04 18:11:34 +08:00
|
|
|
return http.request({
|
|
|
|
url: `broadcast/studio`,
|
|
|
|
method: Method.GET,
|
2021-06-16 18:11:38 +08:00
|
|
|
params
|
2021-06-04 18:11:34 +08:00
|
|
|
});
|
|
|
|
}
|
2021-05-13 11:03:32 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取当前拼团活动的未成团的会员
|
|
|
|
*/
|
|
|
|
export function getPromotionGroupMember(pintuanId) {
|
|
|
|
return http.request({
|
|
|
|
url: `promotion/pintuan/${pintuanId}/members`,
|
|
|
|
method: Method.GET,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 获取拼团列表 */
|
|
|
|
export function getAssembleList(params) {
|
|
|
|
return http.request({
|
2021-06-04 18:11:34 +08:00
|
|
|
url: "promotion/pintuan",
|
2021-05-13 11:03:32 +08:00
|
|
|
method: Method.GET,
|
|
|
|
loading: false,
|
2021-06-04 18:11:34 +08:00
|
|
|
params,
|
|
|
|
});
|
2021-05-13 11:03:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取积分商城分类
|
|
|
|
*/
|
|
|
|
export function getPointsCategory() {
|
|
|
|
return http.request({
|
2021-06-04 18:11:34 +08:00
|
|
|
url: "/promotion/pointsGoods/category",
|
2021-05-13 11:03:32 +08:00
|
|
|
method: Method.GET,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取积分商城商品
|
|
|
|
* @param params
|
|
|
|
*/
|
|
|
|
export function getPointsGoods(params) {
|
|
|
|
return http.request({
|
2021-06-04 18:11:34 +08:00
|
|
|
url: "/promotion/pointsGoods",
|
2021-05-13 11:03:32 +08:00
|
|
|
method: Method.GET,
|
|
|
|
params,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取限时抢购时间线 当天限时抢购信息
|
|
|
|
*/
|
|
|
|
export function getSeckillTimeLine() {
|
|
|
|
return http.request({
|
2021-06-04 18:11:34 +08:00
|
|
|
url: "promotion/seckill",
|
2021-05-13 11:03:32 +08:00
|
|
|
method: Method.GET,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取限时抢购商品 获取某个时刻的限时抢购商品信息
|
|
|
|
* @param params
|
|
|
|
*/
|
|
|
|
export function getSeckillTimeGoods(timeline) {
|
|
|
|
return http.request({
|
|
|
|
url: `promotion/seckill/${timeline}`,
|
|
|
|
method: Method.GET,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取全部优惠券
|
|
|
|
* @param params
|
|
|
|
*/
|
|
|
|
export function getAllCoupons(params) {
|
|
|
|
return http.request({
|
2021-06-04 18:11:34 +08:00
|
|
|
url: "/promotion/coupon",
|
2021-05-13 11:03:32 +08:00
|
|
|
method: Method.GET,
|
|
|
|
params,
|
|
|
|
});
|
|
|
|
}
|