This commit is contained in:
yangtao 2024-04-15 15:57:25 +08:00
parent 59f097a129
commit dc387ec0dd
2 changed files with 6 additions and 3 deletions

View File

@ -182,6 +182,7 @@
this.globalData.store_user_min_recharge = res.data.store_user_min_recharge this.globalData.store_user_min_recharge = res.data.store_user_min_recharge
this.globalData.yue_pay_status = res.data.yue_pay_status this.globalData.yue_pay_status = res.data.yue_pay_status
this.globalData.integration_pay_open=res.data.integration_pay_open this.globalData.integration_pay_open=res.data.integration_pay_open
this.globalData.integral_give_status=res.data.integral_give_status
this.globalData.sys_intention_agree = res.data.sys_intention_agree this.globalData.sys_intention_agree = res.data.sys_intention_agree
this.globalData.mer_intention_open = res.data.mer_intention_open this.globalData.mer_intention_open = res.data.mer_intention_open
this.globalData.alipay_open = res.data.alipay_open this.globalData.alipay_open = res.data.alipay_open

View File

@ -23,7 +23,7 @@
<view class='wrapper'> <view class='wrapper'>
<view class='nav acea-row'> <view class='nav acea-row'>
<view class='item acea-row row-center-wrapper' :class='current==index?"on":""' v-for="(item,index) in navList" :key='index' <view class='item acea-row row-center-wrapper' :class='current==index?"on":""' v-for="(item,index) in navList" :key='index'
@click='nav(index)'><text class='iconfont' :class="item.icon"></text>{{item.name}}</view> @click='nav(index)' v-show="item.status==1"><text class='iconfont' :class="item.icon"></text>{{item.name}}</view>
</view> </view>
<view class='list' :hidden='current != 0' v-if="current == 0" > <view class='list' :hidden='current != 0' v-if="current == 0" >
<view class='tip' v-if="userInfo.clear && userInfo.clear.status && userInfo.clear.nextClearIntegral > 0"><text class='iconfont icon-shuoming'></text> <view class='tip' v-if="userInfo.clear && userInfo.clear.status && userInfo.clear.nextClearIntegral > 0"><text class='iconfont icon-shuoming'></text>
@ -101,11 +101,13 @@
domain: HTTP_REQUEST_URL, domain: HTTP_REQUEST_URL,
navList: [{ navList: [{
'name': '分值明细', 'name': '分值明细',
'icon': 'icon-mingxi' 'icon': 'icon-mingxi',
'status':1,
}, },
{ {
'name': '积分赠送', 'name': '积分赠送',
'icon': 'icon-tishengfenzhi' 'icon': 'icon-tishengfenzhi',
'status':this.$store.getters.globalData.integral_give_status,
} }
], ],
current: 0, current: 0,