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">立即预约</view>
- </view>
- </block>
- <block wx:else>
- <view class="repot-list">
- <view class="report-item">
- <view class="report-name">
- <text>检测人:</text>
- <text>范一岚</text>
- </view>
- <view class="report-this">
- <view class="report-tap" wx:for="{{reportList}}" wx:key="index" bindtap="handleDetail">
- <view class="tap-img">
- <image class="imagereport" src="../../imaes/baogao@2x.png"></image>
- </view>
- <view class="reposttime">
- <text>2022-09-11</text>
- <text> 报告</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
|