This commit is contained in:
zmj 2024-06-11 10:44:20 +08:00
parent 9f0fc79184
commit 686092cb97
1 changed files with 12 additions and 2 deletions

View File

@ -32,10 +32,10 @@
注意事项
</view>
<view class='tips-li'>
1充值后帐户的金额不能提现可用于消费使用
1购买礼包后的账户金额不能提现可用于消费使用
</view>
<view class='tips-li'>
2账户充值出现问题可联系平台客服也可拨打平台客服咨询热线4008888888
2购买礼包出现问题可联系平台客服也可拨打平台客服咨询热线08302669767
</view>
</view>
</view>
@ -74,6 +74,12 @@
}
const submit = () => {
// #ifdef H5
return uni.$u.toast('当前环境不支持微信支付');
// #endif
if (money.value < 300) return uni.$u.toast('最低购买300元');
// #ifndef H5
rechargeApi({
price: money.value
}).then(res => {
@ -109,6 +115,10 @@
}
})
})
// #endif
}
const getUser = () => {