[版本更新]

This commit is contained in:
zhangjing
2021-06-10 15:12:48 +08:00
parent b420399fd8
commit e3b1e0fe99
12 changed files with 45 additions and 28 deletions

View File

@@ -25,8 +25,11 @@ const cancel = (orderid) => req({url: "orders/cancel?orderid=" + orderid , metho
//福利取消订单
const welfaresCancel = (orderid) => req({url: "welfares/orders/cancel?orderid=" + orderid , method: "POST"})
//福利订单支付
const welfarePay = (orderid) => req({url: "payments/welfare?orderid=" + orderid})
//兑换订单支付
const payments = (orderid) => req({url: "payments/order?orderid=" + orderid})
const rightsPay = (orderid) => req({url: "payments/order?orderid=" + orderid})
export default({
orders,
@@ -37,5 +40,6 @@ export default({
welfaresShow,
cancel,
welfaresCancel,
payments
welfarePay,
rightsPay
})