新增账户管理和委托管理模块

This commit is contained in:
唐明明
2023-12-15 10:14:00 +08:00
parent 43320b6870
commit 46d29ae6b6
18 changed files with 1188 additions and 18 deletions

View File

@@ -114,6 +114,15 @@ const coinSynthesize = data => {
})
}
// 现在打款支付
const cashierOffline = data => {
return request({
url : 'pay/cashier_desk/offline',
data,
method: 'POST'
})
}
export {
coinPay,
diffCoinPay,
@@ -127,5 +136,6 @@ export {
dgFree,
umsSynthesize,
dgSynthesize,
coinSynthesize
coinSynthesize,
cashierOffline
}