WxApp/page/component/myOrders/myOrder.wxml

21 lines
761 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="main">
<navigator url="../refund/refund">
<view class="orders-no-refund">退款 / 售后</view>
</navigator>
<!-- <view class="orders-no-address">待收货</view> -->
<view class="orders-box">
<view wx:for="{{orders}}" wx:key="index" class="orders-list">
<image class="orders-thumb" src="{{item.image}}"></image>
<view class="orders-pro-name">{{item.title}}</view>
<view class="orders-pro-price">¥{{item.price}}</view>
<view class="orders-count-num">×{{item.num}}</view>
</view>
</view>
<!-- <view class="orders-footer">
<view class="orders-footer-total">付款合计:¥{{total}}</view>
<view class="orders-footer-btn" bindtap="toPay">去付款</view>
</view> -->
</view>