Commit d90277db authored by jyx's avatar jyx

禁用IOS付款

parent 0f2ce597
......@@ -196,7 +196,17 @@
paySuccess() {
this.getData()
},
showPayDialog() {
showPayDialog() {
let isIOS = uni.getSystemInfoSync().platform == "ios" && false
if (isIOS) {
uni.showToast({
title: '暂不支持IOS系统',
icon: 'none'
})
return
}
this.$nextTick(() => {
// 延迟渲染,否则位置错乱
this.showCoinPop = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment