绑定文版通账号及处理设置支付密码展示位置

This commit is contained in:
2022-07-14 16:38:47 +08:00
parent 47aa866d86
commit 6f2087abec
13 changed files with 3913 additions and 1698 deletions

View File

@@ -95,6 +95,29 @@ const paymentpre = () => {
})
}
// 我的版通账户信息
const wbtInfo = () => {
return request({
url: 'wallet/wbt/info'
})
}
// 是否绑定了文版通账户
const wbtCheck = () => {
return request({
url: 'wallet/wbt/check'
})
}
// 绑定账户版通账户
const wbtBind = (data) => {
return request({
url: 'wallet/wbt/bind',
data:data,
method:'POST',
})
}
export {
dt,
recharge,
@@ -106,6 +129,9 @@ export {
getSms,
submitTransfer,
integral,
paymentpre
paymentpre,
wbtInfo,
wbtCheck,
wbtBind
}