1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/myhome/myhome.wxml-->
- <view class="myhome-wrp">
- <view class="topbg"></view>
- <view class="header">
- <image src="{{memberInfo.member_avatar}}" class="avtor"></image>
- <view class="info">
- <text class="nickname">{{memberInfo.member_nickname}}</text>
- <!-- <text class="weixin">微信号: {{memberInfo.weixin}}</text> -->
- <text class="other">余额还剩 <text class="money">{{memberInfo.vip_left_amount}}</text> 元</text>
- </view>
- </view>
- <view class="card">
- <view class="card-title" bindtap="handleMore" data-cardtype="sinopec">
- <image src="/image/myhome/icon-postage.png" class="icon icon-postage"></image>
- <text class="text">我的油卡</text>
- <image src="/image/myhome/arrow-right.png" class="more"></image>
- </view>
- <view class="card-body">
- <view wx:if="{{petrochina.card_type==='petrochina'}}" class="card-item bg-orange">{{petrochina.card_no}}</view>
- <view wx:if="{{sinopec.card_type==='sinopec'}}" class="card-item bg-orange">{{sinopec.card_no}}</view>
- </view>
- </view>
- <view class="card">
- <view class="card-title" bindtap="handleMore" data-cardtype="phone">
- <image src="/image/myhome/icon-phone.png" class="icon icon-phone"></image>
- <text class="text">我的手机号</text>
- <image src="/image/myhome/arrow-right.png" class="more"></image>
- </view>
- <view class="card-body">
- <view wx:if="{{phone.card_type==='phone'}}" class="card-item bg-blue">{{phone.card_no}}</view>
- </view>
- </view>
- </view>
|