myFile.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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" bindtap="handleAddFile">新建档案</view>
  28. </view>
  29. </view>
  30. <van-dialog
  31. title="建档人数已达上限"
  32. show="{{ vanoverlayshow }}"
  33. confirm-button-text="确定"
  34. confirm-button-color="#333"
  35. bind:confirm="handleConfirm"
  36. >
  37. </van-dialog>
  38. <van-dialog use-slot closeOnClickOverlay showConfirmButton="{{false}}" show="{{ qrcodeDialog }}">
  39. <view class="qrcode">
  40. <image class="qrcode-src" src="../../imaes/erweima@2x.png" />
  41. </view>
  42. </van-dialog>
  43. </view>