<view>
|
<view class="list-item">
|
<view class="list-header">
|
<view>
|
<view class="name">{{order.shopName}}</view>
|
<view class="number">订单编号:{{order.orderNo}}</view>
|
</view>
|
<text>{{order.status}}</text>
|
</view>
|
<view class="list-content">
|
<view class="list-content-row" wx:for="{{order.items}}" wx:for-item="detailItem">
|
<text>{{detailItem.goodsName}} x {{detailItem.count}}</text>
|
<text>¥{{detailItem.zkPrice}}</text>
|
</view>
|
</view>
|
<view class="pay-info">
|
<view wx:for="{{order.flow}}" ><text>{{item.payMethod}} :{{item.amount}}</text></view>
|
<view>
|
<text class="gray">总价 ¥{{order.needPay}}</text>
|
<text class="ml-10 gray">优惠¥{{order.discount}}</text>
|
<text class="ml-10">实付款¥{{order.realPay}}</text>
|
</view>
|
</view>
|
<view class="list-footer">
|
<view><text>购买时间:{{order.orderTime}}</text></view>
|
<view class="mt-5"><text>下单顾问:{{order.staffName}}</text></view>
|
</view>
|
</view>
|
</view>
|