Commit 3b525f41 authored by mengcuiguang's avatar mengcuiguang

屏蔽ios支付

parent ff9fd477
......@@ -198,7 +198,12 @@
this.handlePay();
},
handlePay() {
handlePay() {
if (this.os == 'ios') {
message.notify('暂不支持ios支付');
return
}
let that = this;
let vipBean = this.vipList[this.selectedIndex];
this.post({
......
......@@ -36,7 +36,8 @@
</view>
</view>
<view style="font-size: 36rpx;color: black;font-weight: 777;margin-left: 20rpx;margin-top: 10rpx;">充值VIP会员</view>
<view style="font-size: 36rpx;color: black;font-weight: 777;margin-left: 20rpx;margin-top: 10rpx;">充值VIP会员
</view>
<view class="section">
<view class="pack-box">
<view class="pack-item"
......@@ -262,6 +263,10 @@
// this.$refs.alertDialog.open();
},
handlePay() {
if (this.os == 'ios') {
message.notify('暂不支持ios支付');
return
}
let that = this;
let vipBean = this.pointList[this.selectedIndex];
if (this.selectedIndex == -1) {
......
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