Browse Source

合并

master
luyisha 2 years ago
parent
commit
0a33ab1b89
  1. 13
      pages/base/home.vue

13
pages/base/home.vue

@ -224,7 +224,7 @@
<view class=""><image src="../../static/img/illustration-2.png" style="width: 576rpx;height: 400rpx;"></image></view>
<view style="color: #222;font-size: 16px;font-weight: bold;">{{$t("cxiNewText.a24")}}</view>
<view style="color: #444;font-size: 12px;margin-top: 20rpx;">{{$t("cxiNewText.a82")}}</view>
<navigator class="btn homeBtn" url="/pages/assets/recharge">{{$t("cxiNewText.a24")}}</navigator>
<view class="btn homeBtn" @click="verifyRealName">{{$t("cxiNewText.a24")}}</view>
</template>
<view class="d-flex">
<view class="w-5/12">
@ -1063,6 +1063,17 @@ export default {
},
bgUrl(url){
return "url('"+url+"')";
},
verifyRealName(){
if(this.detail.primary_status!=1){
uni.navigateTo({
url: '/pages/auth/index'
})
}else{
uni.navigateTo({
url: '/pages/assets/recharge'
})
}
}
},
mounted() {

Loading…
Cancel
Save