12345678910111213141516171819202122232425262728293031 |
- <!--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">
- <image class="head-img" src="{{item.headImg}}"></image>
- </view>
- <view class="f-user">
- <view class="fu-top ittflex-jcs">
- <text class="fu-name">{{item.realName}}</text>
- <view class="suer-sex ittflex">
- <image class="img" src="{{item.sex ? '../../imaes/nan@2x.png' : '../../imaes/nv@2x.png'}}"></image>
- </view>
- </view>
- <view class="fu-bottom fu-date">{{item.birthDay}}</view>
- </view>
- <view class="f-qrcode ittflex">
- <!-- <image class="qrcode-item" src="../../imaes/erweima@2x.png"></image> -->
- </view>
- </view>
- </view>
- </view>
- <view class="actions">
- <view class="handle-btn itt-btn" bindtap="handleDelFile">删除</view>
- </view>
- </view>
|