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

@@ -73,6 +73,9 @@ const fridayPay = (trade_no) => req({url: "payments/welfare/wechat",method: "POS
//洗车券-获取跳转地址
const washcarUrl = (welfare_id, right_config_id) => req({url: "washcar/infourl", data: {welfare_id: welfare_id, right_config_id: right_config_id}})
//洗车券-获取跳转地址
const washcarCoupon = (coupon) => req({url: "washcar/" + coupon + "/info",method: "POST"})
//首页轮播-跳转本页面 --业务数据查看
const busineSee = (business) => req({url: "business/" + business})
@@ -107,6 +110,7 @@ export default({
fridayInfo,
fridayPay,
washcarUrl,
washcarCoupon,
busineSee,
busineForm,
subscribe

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
})