1
jyy
2021-01-16 37c344f7b5c767c6a87e08a0c8a9698d8610fbfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>