index-list.wxml 416 B

123456789101112
  1. <import src="../item/index-list-item.wxml" />
  2. <template name="showBoxListTemplate">
  3. <view class="list-container">
  4. <scroll-view scroll-y="true" class='scroll-box'>
  5. <view class='scroll-list'>
  6. <block wx:for="{{showBoxList}}" wx:for-item="item" wx:key="itemId">
  7. <template is="showBoxTemplate" data="{{...item}}" />
  8. </block>
  9. </view>
  10. </scroll-view>
  11. </view>
  12. </template>