42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
|
|
<van-sticky>
|
||
|
|
<van-nav-bar
|
||
|
|
title="兑换会员"
|
||
|
|
left-text="返回"
|
||
|
|
left-arrow
|
||
|
|
bind:click-left="goback"
|
||
|
|
/>
|
||
|
|
</van-sticky>
|
||
|
|
<view class="vip_info">
|
||
|
|
<text class="nick">{{ userInfo.nickname }}</text>
|
||
|
|
<van-tag wx:if="{{userMemberInfo}}" color="#F7DB50" text-color="#ad0000">{{userMemberInfo.level}}</van-tag>
|
||
|
|
<view wx:if="{{userMemberInfo}}" class="member_datetime">
|
||
|
|
<text class="startTime">{{userMemberInfo.startTime}}</text>
|
||
|
|
<text>-</text>
|
||
|
|
<text class="endTime">{{userMemberInfo.endTime}}</text>
|
||
|
|
</view>
|
||
|
|
<text wx:else>您目前还不是会员哦~</text>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<view class="vip_list">
|
||
|
|
<text>成为会员,全站资源免费下</text>
|
||
|
|
<view class="{{current===index?'vip_item active':'vip_item'}}" wx:for="{{ vipTypeList }}" wx:key="index"
|
||
|
|
bindtap="switchActive" data-index="{{index}}">
|
||
|
|
<text class="vip_duration">{{item.name}}</text>
|
||
|
|
<view class="vip_score">
|
||
|
|
所需积分<text class="vip_duration_value"> {{item.needScore}}</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<van-button type="info" block bindtap="add">确认兑换</van-button>
|
||
|
|
<van-button type="info" block bindtap="jihuo">激活卡密</van-button>
|
||
|
|
|
||
|
|
<view class="vip_explain">
|
||
|
|
<text>会员服务声明:</text>
|
||
|
|
<view class="vip_explain_content">
|
||
|
|
<text>1.在会员有效期内,用户可以免费学习本站所有内容和课程。</text>
|
||
|
|
<text>2.重复兑换会员服务,会员有效期将在原有基础上顺延。</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|