handleFile.wxml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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"></view>
  10. <view class="f-user">
  11. <view class="fu-top ittflex-jcs">
  12. <text class="fu-name">{{item.name}}</text>
  13. <view class="suer-sex ittflex">
  14. <image class="img" src="../../imaes/nan@2x.png"></image>
  15. </view>
  16. </view>
  17. <view class="fu-bottom fu-date">{{item.date}}</view>
  18. </view>
  19. <view class="f-qrcode ittflex">
  20. <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="actions ittfle">
  25. <view class="handle-btn itt-btn" bindtap="handleDelFile">删除</view>
  26. </view>
  27. </view>
  28. <van-dialog
  29. title="删除检测人"
  30. message="确定要删除关关的档案信息吗\n相对应的体检报告也会相应删除哦!"
  31. show="{{ vanoverlayshow }}"
  32. show-cancel-button
  33. confirm-button-text="确定"
  34. confirm-button-color="#333"
  35. cancel-button-text="取消"
  36. cancel-button-color="#666"
  37. bind:confirm="handleConfirm"
  38. bind:cancel="handleCancel"
  39. >
  40. </van-dialog>
  41. </view>