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