index.wxml 745 B

1234567891011121314151617181920
  1. <view class="SupplyAndDemandItemBox">
  2. <!-- 标题,按钮 -->
  3. <view class="title-and-but">
  4. <view class="supply-and-demand-title u-line-2">{{title}}</view>
  5. <view class="supply-and-demand-but">
  6. <slot name='soldOutBut'></slot>
  7. </view>
  8. </view>
  9. <!-- 时间,内容 -->
  10. <view class="time-content">
  11. <view class="supply-and-demand-time">{{time}}</view>
  12. <view class="supply-and-demand-content">
  13. <image wx:for="{{imageList}}" wx:if="{{index<3}}" src="{{item.fobsurl}}" mode="aspectFill" data-index="{{index}}" bindtap="previewImage"></image>
  14. </view>
  15. </view>
  16. <!-- 数据,按钮 -->
  17. <view>
  18. <slot name='dataAndBut'></slot>
  19. </view>
  20. </view>