footprint.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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> -->
  18. <view class="container">
  19. <view class="footprint">
  20. <view class="day-item" >
  21. <view class="day-hd">2013-4-5</view>
  22. <view class="day-list">
  23. <view class="item" data-footprint="111" bindtouchstart="touchStart" bindtouchend="touchEnd" bindtap="deleteItem" >
  24. <image class="img" src="{{iitem.list_pic_url}}"></image>
  25. <view class="info">
  26. <view class="name">name</view>
  27. <view class="subtitle">.goods_brief</view>
  28. <view class="price">¥iitem.retail_price</view>
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>