12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--pages/allFile/allFile.wxml-->
- <view class="myfile-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="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" bindtap="handleShowQRCode">
- <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image>
- </view>
- </view>
- <view class="f-right ittflex">
- <!-- <text class="report-text">已有2份报告</text> -->
- <text class="report-text report-text-fail">还未产生报告</text>
- </view>
- </view>
- <view class="actions ittflex-jcb">
- <view class="handle-btn manage-btn ittflex" bindtap="handleFile">管理</view>
- <view class="handle-btn itt-btn">新建档案</view>
- </view>
- </view>
- <van-overlay show="{{ vanoverlayshow }}">
- <view class="wrapper ittflex">
- <view class="model">
- <view class="top-title">建档人数已达上限</view>
- <view class="bottom-action ittflex">
- <view class="btn w-confirm-btn ittflex" bindtap="handleConfirm">确定</view>
- </view>
- </view>
- </view>
- </van-overlay>
- <van-dialog use-slot closeOnClickOverlay showConfirmButton="{{false}}" show="{{ qrcodeDialog }}">
- <view class="qrcode">
- <image class="qrcode-src" src="../../imaes/erweima@2x.png" />
- </view>
- </van-dialog>
- </view>
|