123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import request from '@/sheep/request';
- import {
- t
- } from '@/locale';
- const CouponApi = {
-
- getCouponTemplateListByIds: (ids) => {
- return request({
- url: '/promotion/coupon-template/list-by-ids',
- method: 'GET',
- params: { ids },
- custom: {
- showLoading: false,
- showError: false,
- },
- });
- },
-
- getCouponTemplateList: (spuId, productScope, count) => {
- return request({
- url: '/promotion/coupon-template/list',
- method: 'GET',
- params: { spuId, productScope, count },
- });
- },
-
- getCouponTemplatePage: (params) => {
- return request({
- url: '/promotion/coupon-template/page',
- method: 'GET',
- params,
- });
- },
-
- getCouponTemplate: (id) => {
- return request({
- url: '/promotion/coupon-template/get',
- method: 'GET',
- params: { id },
- });
- },
-
- getCouponPage: (params) => {
- return request({
- url: '/promotion/coupon/page',
- method: 'GET',
- params,
- });
- },
-
- takeCoupon: (templateId) => {
- return request({
- url: '/promotion/coupon/take',
- method: 'POST',
- data: { templateId },
- custom: {
- auth: true,
- showLoading: true,
- loadingMsg: t('common.claiming'),
- showSuccess: true,
- successMsg: t('common.claim_success'),
- },
- });
- },
-
- getCoupon: (id) => {
- return request({
- url: '/promotion/coupon/get',
- method: 'GET',
- params: { id },
- });
- },
-
- getUnusedCouponCount: () => {
- return request({
- url: '/promotion/coupon/get-unused-count',
- method: 'GET',
- custom: {
- showLoading: false,
- auth: true,
- },
- });
- },
-
- getMatchCouponList: (price, spuIds, skuIds, categoryIds) => {
- return request({
- url: '/promotion/coupon/match-list',
- method: 'GET',
- params: {
- price,
- spuIds: spuIds.join(','),
- skuIds: skuIds.join(','),
- categoryIds: categoryIds.join(','),
- },
- custom: {
- showError: false,
- showLoading: false,
- },
- });
- }
- };
- export default CouponApi;
|