footprint.wxml 756 B

1234567891011121314151617
  1. <view class="container">
  2. <view class="footprint">
  3. <view class="day-item" wx:for="{{footprintList}}" wx:key="{{index}}">
  4. <view class="day-hd">{{item[0].add_time}}</view>
  5. <view class="day-list">
  6. <view class="item" data-footprint="{{iitem}}" bindtouchstart="touchStart" bindtouchend="touchEnd" bindtap="deleteItem" wx:for="{{item}}" wx:for-item="iitem" wx:key="{{iitem.id}}">
  7. <image class="img" src="{{iitem.list_pic_url}}"></image>
  8. <view class="info">
  9. <view class="name">{{iitem.name}}</view>
  10. <view class="subtitle">{{iitem.goods_brief}}</view>
  11. <view class="price">¥{{iitem.retail_price}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>