footprint.wxml 809 B

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