WxApp/page/component/myOrders2/myOrder2.wxml

24 lines
738 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-box">
<view wx:for="{{orders}}" wx:key="id" class="orders-list">
<image class="orders-thumb" src="{{item.goodImage}}"></image>
<view class="orders-info">
<view class="orders-info-left">
<view class="orders-pro-name">{{item.goodName}}</view>
<view class="order-specs">{{item.specs}}</view>
</view>
<view class="orders-info-right">
<view class="orders-pro-price">¥{{item.goodPrice}}</view>
<view class="orders-count-num">×{{item.num}}</view>
</view>
</view>
</view>
</view>
</view>