order.wxml 855 Bytes
<!--order.wxml-->
<scroll-view class="xn-main clearfix" scroll-y lower-threshold='50'   bindscrolltolower="lower">
 <view class="item-list">
    <!-- <view class="item-info item-title item clearfix">
        <view class="name">消费总金额</view>
        <view class="price xn-text-right">{{totalCount}}</view>
    </view> -->
    <view class="item-info item-title clearfix">
    <view class="name">时间&地点</view>
    <view class="price xn-text-right">消费金额(元)</view>
    </view>
    <view class="item-info clearfix" wx:for="{{dataList}}">
      <view class="name">
          <view class="">{{item.dateDay}}</view>
          <view class="">{{item.shopName}}</view>
      </view>
      <view class="price xn-text-right">{{item.revenueAmount}}</view>
    </view>
    <view class="tip" wx:if="tip">{{tip}}</view>
  </view>
</scroll-view>