123456789101112131415161718192021222324252627282930 |
- <!--pages/report/report.wxml-->
- <view class="report-content">
- <block wx:if="{{reportList.length == 0}}">
- <view class="nodata" >
- <van-empty style="margin-top: 200rpx;" description="当前不存在报告,立即去预约检测" />
- <view class="itt-btn" bindtap="handleAppoint">立即预约</view>
- </view>
- </block>
- <block wx:else>
- <view class="repot-list">
- <view class="report-item {{index == reportList.length - 1 ? 'padding-bottom' : ''}}" wx:for="{{reportList}}" wx:key="index">
- <view class="report-name">
- <text>检测人:</text>
- <text>{{item.realName}}</text>
- </view>
- <view class="report-this">
- <view class="report-tap" wx:for="{{item.reportVoList}}" wx:for-item="innerItem" wx:key="index" data-realname="{{item.realName}}" data-addtime="{{innerItem.addTime}}" data-reportid="{{innerItem.reportId}}" bindtap="handleDetail">
- <view class="tap-img">
- <image class="imagereport" src="../../imaes/baogao@2x.png"></image>
- </view>
- <view class="reposttime">
- <view>{{innerItem.addTime}}</view>
- <view>报告</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
|