12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/myhome/myhome.wxml-->
- <view class="myhome-wrp">
- <view class="topbg"></view>
- <view class="header">
- <image src="{{personInfo.avtor}}" class="avtor"></image>
- <view class="info">
- <text class="nickname">{{personInfo.nickname}}</text>
- <text class="weixin">微信号: {{personInfo.weixin}}</text>
- <text class="other">已经为您节省 <text class="money">{{personInfo.money}}</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 class="card-item bg-orange">{{personInfo.postage}}</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 class="card-item bg-blue">{{personInfo.phone}}</view>
- </view>
- </view>
- </view>
|