|
@@ -1 +1,77 @@
|
|
|
|
+<view class="person_info">
|
|
|
|
+ <block wx:if="{{userInfo.avatarUrl != ''}}">
|
|
|
|
+ <image mode='widthFix' src="{{userInfo.avatarUrl}}" class='person_avatar_image'></image>
|
|
|
|
+ <text class='person_name'>{{userInfo.nickName}}</text>
|
|
|
|
+ </block>
|
|
|
|
+ <block wx:else>
|
|
|
|
+ <image mode='widthFix' src="../../image/mine_logo_icon.png" class='person_avatar_image'></image>
|
|
|
|
+ <text class='person_name'>请登录</text>
|
|
|
|
+ </block>
|
|
|
|
+</view>
|
|
|
|
|
|
|
|
+<view class="order_list">
|
|
|
|
+ <view class='order_title flex_1px_d' bindtap='skip_all_order'>
|
|
|
|
+ <text>我的订单</text>
|
|
|
|
+ <text class='look_all_order arrow_right'>查看全部订单</text>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ <view class='order_info'>
|
|
|
|
+ <view>
|
|
|
|
+ <image style='width:35rpx;' mode='widthFix' src='../../image/person/payments_due_icon.png'></image>
|
|
|
|
+ <view>
|
|
|
|
+ <text>待付款</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view>
|
|
|
|
+ <image style='width:35rpx;' mode='widthFix' src='../../image/person/shipping_term_icon.png'></image>
|
|
|
|
+ <view>
|
|
|
|
+ <text>待发货</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view>
|
|
|
|
+ <image style='width:35rpx;' mode='widthFix' src='../../image/person/goods_receipt_icon.png'></image>
|
|
|
|
+ <view>
|
|
|
|
+ <text>待收货</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view>
|
|
|
|
+ <image style='width:32rpx;' mode='widthFix' src='../../image/person/evaluated_icon.png'></image>
|
|
|
|
+ <view>
|
|
|
|
+ <text>已收货</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view>
|
|
|
|
+ <image style='width:35rpx;' mode='widthFix' src='../../image/person/refund_terms_icon.png'></image>
|
|
|
|
+ <view>
|
|
|
|
+ <text>退款/售后</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+</view>
|
|
|
|
+
|
|
|
|
+<view class='person_info_cell'>
|
|
|
|
+ <view class='item flex_1px_d' bindtap='bonus_list'>
|
|
|
|
+ <image style='width:32rpx;' mode='widthFix' src='../../image/person/bonus_icon.png'></image>
|
|
|
|
+ <text class='arrow_right'>熊猫红包</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="bonus_list {{bonus_list_show ? 'show' : 'hide' }}">
|
|
|
|
+ <block wx:key="{{index}}" wx:for="{{bonus_rate}}">
|
|
|
|
+ <view class='bonus_item flex_1px_d'>
|
|
|
|
+ <text>{{item.rate}}%</text>
|
|
|
|
+ <text class='total'>{{item.total}}元</text>
|
|
|
|
+ </view>
|
|
|
|
+ </block>
|
|
|
|
+ </view>
|
|
|
|
+ <view class='item flex_1px_d'>
|
|
|
|
+ <image style='width:32rpx;' mode='widthFix' src='../../image/person/address_icon.png'></image>
|
|
|
|
+ <text class='arrow_right'>收货地址</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class='item flex_1px_d'>
|
|
|
|
+ <image style='width:32rpx;' mode='widthFix' src='../../image/person/fcode_icon.png'></image>
|
|
|
|
+ <text class='arrow_right'>我的F码</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class='item flex_1px_d'>
|
|
|
|
+ <image style='width:32rpx;' mode='widthFix' src='../../image/person/help_icon.png'></image>
|
|
|
|
+ <text class='arrow_right' bindtap='skip_help'>帮助中心</text>
|
|
|
|
+ </view>
|
|
|
|
+</view>
|