1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!--pages/myhome/myhome.wxml-->
- <view class="myhome-wrp">
- <auth wx:if="{{!userInfo}}" bind:getAuth="getAuth"></auth>
- <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="order_list">
- <view class='order_title flex_1px_d' bindtap='skip_all_order'>
- <text>我的订单</text>
- </view>
- <view class='order_info'>
- <view>
- <navigator url="/pages/vorderList/orderTabs?state_type=state_new" hover-class="none" class="pos_rel">
- <image style='width:35rpx;height: 35rpx;' src='../../image/person/payments_due_icon.png'></image>
- <view class="mt8">
- <text>待付款</text>
- </view>
- <view class="sub_count" wx:if="{{pre_pay_count}}">{{pre_pay_count}}</view>
- </navigator>
- </view>
- <view>
- <navigator url="/pages/vorderList/orderTabs?state_type=state_pay" hover-class="none" class="pos_rel">
- <image style='width:35rpx;height: 35rpx;' src='../../image/person/shipping_term_icon.png'></image>
- <view class="mt8">
- <text>充值中</text>
- </view>
- <view class="sub_count" wx:if="{{pre_send_count}}">{{pre_send_count}}</view>
- </navigator>
- </view>
- <view>
- <navigator url="/pages/vorderList/orderTabs?state_type=state_success" hover-class="none" class="pos_rel">
- <image style='width:35rpx;height: 35rpx;' src='../../image/person/evaluated_icon.png'></image>
- <view class="mt8">
- <text>已完成</text>
- </view>
- <view class="sub_count" wx:if="{{evaluate_count}}">{{evaluate_count}}</view>
- </navigator>
- </view>
- </view>
- </view>
- <view class="card">
- <view class="card-title" bindtap="handleMore" data-cardtype="petrochina">
- <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>
- </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="{{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 class="card">
- <view class="card-title" bindtap="handleMore" data-cardtype="invitees">
- <text class="text">我的好友列表</text>
- <image src="/image/myhome/arrow-right.png" class="more"></image>
- </view>
- </view>
- </view>
|