-
Notifications
You must be signed in to change notification settings - Fork 4
/
mine.wxml
51 lines (44 loc) · 1.94 KB
/
mine.wxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<scroll-view scroll-y="true" class="scroller_view">
<!-- <view class="graySpace"></view> -->
<view class="item-avatar-lg userInfo_container">
<!-- <image src="{{userInfo.avatar}}" background-size="cover"></image>
<view class="text_box padding">
<view class="flex">
<text class="title">{{userInfo.nickName}}</text>
</view>
<view class="flex">
<text class="title">注册时间:{{zcTime}}</text>
</view>
</view> -->
<view class="home-header">
<open-data type="userAvatarUrl" class="user-image" lang="en"></open-data>
<view class="user-info">
<open-data type="userNickName"></open-data>
</view>
</view>
</view>
<view class="sjjs" wx:if="{{userInfo.expireTime != '永久'}}">
<button bindtap="goHyPage">会员升级</button>
</view>
<view class="userInfo_container userOtherInfo_con">
<!-- <image src="{{i.img}}" /> -->
<view style="padding-left:10px">
<text class="title">剩余体验次数:</text>
<text class="userInfo_value" style="color: red;" wx:if="{{canUseTime >= 0}}">{{canUseTime}}次</text>
<text class="userInfo_value" wx:else>不限</text>
</view>
</view>
<view class="userInfo_container userOtherInfo_con" bindtap="goHyPage">
<!-- <image src="{{i.img}}" /> -->
<view style="padding-left:10px">
<text class="title">会员等级:</text>
<text class="userInfo_value">{{userInfo.hyName}}</text>
</view>
</view>
<view class="userInfo_container userOtherInfo_con" wx:if="{{userInfo.expireTime}}">
<view style="padding-left:10px">
<text class="title" style="width:430rpx">会员有效期:</text>
<text class="userInfo_value" style="width:250rpx;">{{expireTimeyyyyMMdd}}</text>
</view>
</view>
</scroll-view>