This commit is contained in:
zhangmanman
2021-06-29 14:15:41 +08:00
parent fa6638c90b
commit b5c5316f8b
17 changed files with 136 additions and 7 deletions

View File

@@ -52,6 +52,9 @@ const unicom = (mobile, channel, code) => req({url: "unicom/get", method: "POST"
// 获取商家券信息
const merchant_card = (coupon_id) => req({url: "coupons/merchant_card", method: "GET", data:{coupon_id : coupon_id}})
// 获取商家券信息
const washcarBuy = () => req({url: "washcar/create"})
export default({
index,
mobiles,
@@ -69,5 +72,6 @@ export default({
ungrants,
send,
unicom,
merchant_card
merchant_card,
washcarBuy
})