123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!--pages/handleFile/handleFile.wxml-->
- <view class="handle-file-content">
- <view class="main-content">
- <view class="file-item ittflex-jcb" wx:for="{{fileList}}" wx:key="index">
- <view class="f-left ittflex-jcs">
- <view class="ittflex f-radio {{item.choseFlag ? 'f-radio-active' : ''}}" data-index="{{index}}" bindtap="handleRadio">
- <van-icon name="success" color="#fff"/>
- </view>
- <view class="f-avatar"></view>
- <view class="f-user">
- <view class="fu-top ittflex-jcs">
- <text class="fu-name">{{item.name}}</text>
- <view class="suer-sex ittflex">
- <image class="img" src="../../imaes/nan@2x.png"></image>
- </view>
- </view>
- <view class="fu-bottom fu-date">{{item.date}}</view>
- </view>
- <view class="f-qrcode ittflex">
- <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image>
- </view>
- </view>
- </view>
- <view class="actions ittfle">
- <view class="handle-btn itt-btn" bindtap="handleDelFile">删除</view>
- </view>
- </view>
- <van-dialog
- title="删除检测人"
- message="确定要删除关关的档案信息吗\n相对应的体检报告也会相应删除哦!"
- show="{{ vanoverlayshow }}"
- show-cancel-button
- confirm-button-text="确定"
- confirm-button-color="#333"
- cancel-button-text="取消"
- cancel-button-color="#666"
- bind:confirm="handleConfirm"
- bind:cancel="handleCancel"
- >
- </van-dialog>
- </view>
|