1234567891011121314151617181920212223242526272829303132333435 |
- <!-- <view class="container">
- <view class="footprint">
- <view class="day-item" wx:for="{{footprintList}}" wx:key="{{index}}">
- <view class="day-hd">{{item[0].add_time}}</view>
- <view class="day-list">
- <view class="item" data-footprint="{{iitem}}" bindtouchstart="touchStart" bindtouchend="touchEnd" bindtap="deleteItem" wx:for="{{item}}" wx:for-item="iitem" wx:key="{{iitem.id}}">
- <image class="img" src="{{iitem.list_pic_url}}"></image>
- <view class="info">
- <view class="name">{{iitem.name}}</view>
- <view class="subtitle">{{iitem.goods_brief}}</view>
- <view class="price">¥{{iitem.retail_price}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view> -->
- <view class="container">
- <view class="footprint">
- <view class="day-item" >
- <view class="day-hd">2013-4-5</view>
- <view class="day-list">
- <view class="item" data-footprint="111" bindtouchstart="touchStart" bindtouchend="touchEnd" bindtap="deleteItem" >
- <image class="img" src="{{iitem.list_pic_url}}"></image>
- <view class="info">
- <view class="name">name</view>
- <view class="subtitle">.goods_brief</view>
- <view class="price">¥iitem.retail_price</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|