This commit is contained in:
唐明明
2023-05-22 11:13:29 +08:00
parent c77b741c61
commit 0fe6fd4aaf
47 changed files with 6090 additions and 39 deletions

View File

@@ -87,6 +87,33 @@ const dgFree = (orderNo, type) => {
})
}
// 银联综法支付
const umsSynthesize = data => {
return request({
url : 'pay/cashier_desk/ums',
data,
method: 'POST'
})
}
// 抖拱综法支付
const dgSynthesize = data => {
return request({
url : 'pay/cashier_desk/dg',
data,
method: 'POST'
})
}
// 火力值综法支付
const coinSynthesize = data => {
return request({
url : 'pay/cashier_desk/score',
data,
method: 'POST'
})
}
export {
coinPay,
diffCoinPay,
@@ -97,5 +124,8 @@ export {
umsFreeInfo,
dgPay,
diffDgPay,
dgFree
dgFree,
umsSynthesize,
dgSynthesize,
coinSynthesize
}