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.

16 lines
352 B

7 months ago
  1. import request from '@/sheep/request';
  2. const ActivityApi = {
  3. // 获得单个商品,进行中的拼团、秒杀、砍价活动信息
  4. getActivityListBySpuId: (spuId) => {
  5. return request({
  6. url: '/promotion/activity/list-by-spu-id',
  7. method: 'GET',
  8. params: {
  9. spuId,
  10. },
  11. });
  12. },
  13. };
  14. export default ActivityApi;