[抖火申请支付]

This commit is contained in:
2023-05-15 13:33:00 +08:00
commit c503bff7d2
294 changed files with 25144 additions and 0 deletions

46
apis/interfaces/pay.js Normal file
View File

@@ -0,0 +1,46 @@
/**
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
import { request } from '../index'
// 银联9.9商务支付
const ums = (applyNo, data) =>{
return request({
url : 'pay/apply/' + applyNo + '/ums',
data
})
}
// 银联服务包支付
const umsOrder = (applyNo, data) =>{
return request({
url : 'pay/order/' + applyNo + '/ums',
data
})
}
// 银联补差价支付
const umsDiff = (diffPriceId, data) =>{
return request({
url : 'pay/diff/' + diffPriceId + '/ums',
data
})
}
// 查询支付结果
const umsState = (trade_id) => {
return request({
url : 'payments/query/' + trade_id,
})
}
export {
ums,
umsOrder,
umsDiff,
umsState
}