index.wxml 674 B

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