document.wxml 678 B

12345678910111213
  1. <!--pages/document/document.wxml-->
  2. <view class="container">
  3. <scroll-view style="height: 100%; width: 100%;background-color: #ffffff; " scroll-y>
  4. <view wx:for="{{itemList}}" style="margin-top: 28rpx;" wx:key="itemIndex" wx:for-item="item">
  5. <documentitem id="documentItem{{index}}" itemData="{{item}}" bind:showActionWindow="showActionWindow" itemIndex="{{index}}">
  6. </documentitem>
  7. </view>
  8. </scroll-view>
  9. </view>
  10. <fileBottomPop id="popupwindow" style="position: absolute; left: 0;" bind:fileDel="fileDel" bind:downLoading="downLoading" bind:downLoadComplete="downLoadComplete" bind:downLoadError="downLoadError"></fileBottomPop>