myFile.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!--pages/allFile/allFile.wxml-->
  2. <view class="myfile-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="f-avatar"></view>
  7. <view class="f-user">
  8. <view class="fu-top ittflex-jcs">
  9. <text class="fu-name">{{item.name}}</text>
  10. <view class="suer-sex ittflex">
  11. <image class="img" src="../../imaes/nan@2x.png"></image>
  12. </view>
  13. </view>
  14. <view class="fu-bottom fu-date">{{item.date}}</view>
  15. </view>
  16. <view class="f-qrcode ittflex" bindtap="handleShowQRCode">
  17. <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image>
  18. </view>
  19. </view>
  20. <view class="f-right ittflex">
  21. <!-- <text class="report-text">已有2份报告</text> -->
  22. <text class="report-text report-text-fail">还未产生报告</text>
  23. </view>
  24. </view>
  25. <view class="actions ittflex-jcb">
  26. <view class="handle-btn manage-btn ittflex" bindtap="handleFile">管理</view>
  27. <view class="handle-btn itt-btn">新建档案</view>
  28. </view>
  29. </view>
  30. <van-overlay show="{{ vanoverlayshow }}">
  31. <view class="wrapper ittflex">
  32. <view class="model">
  33. <view class="top-title">建档人数已达上限</view>
  34. <view class="bottom-action ittflex">
  35. <view class="btn w-confirm-btn ittflex" bindtap="handleConfirm">确定</view>
  36. </view>
  37. </view>
  38. </view>
  39. </van-overlay>
  40. <van-dialog use-slot closeOnClickOverlay showConfirmButton="{{false}}" show="{{ qrcodeDialog }}">
  41. <view class="qrcode">
  42. <image class="qrcode-src" src="../../imaes/erweima@2x.png" />
  43. </view>
  44. </van-dialog>
  45. </view>