| xqd
@@ -24,7 +24,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<u-cell-group :border="false" class="tab-list">
|
|
|
- <u-cell-item title="桥架会员" :border-bottom="false" bg-color="#f9f9f9" @click="$jump({url:'/pages/my/member',type:'to'})">
|
|
|
+ <u-cell-item title="桥架会员" :border-bottom="false" bg-color="#f9f9f9" @click="handleJumpBuy">
|
|
|
<view slot="icon" class="icon bridge"></view>
|
|
|
</u-cell-item>
|
|
|
<u-cell-item title="会员购买记录" :border-bottom="false" bg-color="#f9f9f9" @click="$jump({url:'/pages/my/member-record',type:'to'})">
|
| xqd
@@ -83,6 +83,19 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleJumpBuy(){
|
|
|
+ if(this.$platform === 'ios'){
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: '由于相关规范,iOS功能暂不可用',
|
|
|
+ success: function (res) {
|
|
|
+ // res.confirm res.cancel
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ this.$jump({url:'/pages/my/member',type:'to'})
|
|
|
+ },
|
|
|
getPhoneNumber(phoneNumber){
|
|
|
uni.checkSession({
|
|
|
success: data => {
|