河马支付

This commit is contained in:
唐明明
2022-09-23 17:02:55 +08:00
parent 872a125fc1
commit 9002c868c4
19 changed files with 1429 additions and 585 deletions

View File

@@ -55,7 +55,28 @@ const collagePAY = (orderNo,password) => {
})
}
// 河马支付
const hmPay = (orderID) => {
return request({
url : 'user/transaction/recharge/payment/hema',
data : {
order_id: orderID
},
method : 'POST'
})
}
// 河马付支付结果查询
const hmState = (type, id) => {
return request({
url : 'hema/affirm',
method : 'POST',
data : {
type,
id
}
})
}
export {
wxPAY,
@@ -63,4 +84,6 @@ export {
dtPAY,
payIndex,
collagePAY,
hmPay,
hmState
}