| 1234567891011121314151617181920 |
- import { http } from '@/http/alova'
- import { ContentTypeEnum } from '@/http/tools/enum'
- export function getReceiveCouponDetail(couponId: string) {
- return http.Get('/couponCenter/APP/shareRecord/queryTemplateBySendUserId', {
- params: {
- id: couponId,
- }
- })
- }
- // 新增:获取优惠券分享短链的接口
- export function getCouponShareLink(params) {
- return http.Get('/couponCenter/APP/shareRecord/createShareWechatUrl', {
- params: {
- templateId: params.templateId,
- pathUrl: params.pathUrl,
- }
- })
- }
|