|
@@ -409,7 +409,7 @@
|
|
|
</view>
|
|
</view>
|
|
|
<view class="user-content">
|
|
<view class="user-content">
|
|
|
<!-- 升级VIP -->
|
|
<!-- 升级VIP -->
|
|
|
- <view class="vip-upgrade-banner" @click="goVipUpgrade">
|
|
|
|
|
|
|
+ <view v-if="isAndroid" class="vip-upgrade-banner" @click="goVipUpgrade">
|
|
|
<view class="vip-banner-content">
|
|
<view class="vip-banner-content">
|
|
|
<view class="vip-banner-text"> 升级VIP专享超值权益 </view>
|
|
<view class="vip-banner-text"> 升级VIP专享超值权益 </view>
|
|
|
<view class="vip-upgrade-button"> 去升级 </view>
|
|
<view class="vip-upgrade-button"> 去升级 </view>
|
|
@@ -618,7 +618,7 @@
|
|
|
规则中心
|
|
规则中心
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="util-item" @click="goNav('/pages/my/VIP/benefits')">
|
|
|
|
|
|
|
+ <view v-if="isAndroid" class="util-item" @click="goNav('/pages/my/VIP/benefits')">
|
|
|
<image src="../../static/images/my/icon/utils/benefits.png"
|
|
<image src="../../static/images/my/icon/utils/benefits.png"
|
|
|
style="width: 54rpx; height: 54rpx" mode=""></image>
|
|
style="width: 54rpx; height: 54rpx" mode=""></image>
|
|
|
<view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
|
|
<view class="" style="color: #1a1a1a; font-size: 24rpx; margin-top: 15rpx">
|
|
@@ -849,11 +849,18 @@ export default {
|
|
|
token: "",
|
|
token: "",
|
|
|
companyInfo: "",
|
|
companyInfo: "",
|
|
|
companyStatus: "", //企业认证状态(1:审核中 2:已通过 3:已拒绝 空:未认证)
|
|
companyStatus: "", //企业认证状态(1:审核中 2:已通过 3:已拒绝 空:未认证)
|
|
|
|
|
+ isAndroid:false
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
onLoad(e) {
|
|
onLoad(e) {
|
|
|
this.XCXIsSelect = this.$queue.getData("XCXIsSelect");
|
|
this.XCXIsSelect = this.$queue.getData("XCXIsSelect");
|
|
|
var that = this
|
|
var that = this
|
|
|
|
|
+ //#ifdef APP-PLUS
|
|
|
|
|
+ this.isAndroid=uni.getSystemInfoSync().platform=='android'
|
|
|
|
|
+ //#endif
|
|
|
|
|
+ //#ifndef APP-PLUS
|
|
|
|
|
+ this.isAndroid=true
|
|
|
|
|
+ //#endif
|
|
|
uni.$on('changeRole', function (res) {
|
|
uni.$on('changeRole', function (res) {
|
|
|
console.log(res.userType)
|
|
console.log(res.userType)
|
|
|
if (res.userType == 1) {
|
|
if (res.userType == 1) {
|