handleFile.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <!--pages/handleFile/handleFile.wxml-->
  2. <view class="handle-file-content">
  3. <view class="main-content">
  4. <view class="file-item ittflex-jcb" wx:for="{{fileList}}" wx:key="index">
  5. <view class="f-left ittflex-jcs">
  6. <view class="ittflex f-radio {{item.choseFlag ? 'f-radio-active' : ''}}" data-index="{{index}}" bindtap="handleRadio">
  7. <van-icon name="success" color="#fff"/>
  8. </view>
  9. <view class="f-avatar">
  10. <image class="head-img" src="{{item.headImg}}"></image>
  11. </view>
  12. <view class="f-user">
  13. <view class="fu-top ittflex-jcs">
  14. <text class="fu-name">{{item.realName}}</text>
  15. <view class="suer-sex ittflex">
  16. <image class="img" src="{{item.sex ? '../../imaes/nan@2x.png' : '../../imaes/nv@2x.png'}}"></image>
  17. </view>
  18. </view>
  19. <view class="fu-bottom fu-date">{{item.birthDay}}</view>
  20. </view>
  21. <view class="f-qrcode ittflex">
  22. <!-- <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image> -->
  23. </view>
  24. </view>
  25. </view>
  26. <view class="actions ittfle">
  27. <view class="handle-btn itt-btn" bindtap="handleDelFile">删除</view>
  28. </view>
  29. </view>
  30. </view>