筛查记录

This commit is contained in:
shidongli 2023-11-13 16:26:35 +08:00
parent a2f8c3e6e5
commit 410f44a1a0
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<template>
<view class="screeningRecord">
<view class="screeningRecord" v-if="screeningResultData.length>0">
<view class="screeningRecordItem" v-for="(item,index) in screeningResultData" :key="index">
<!-- <view>筛查日期{{ item.screeningDate }}</view> -->
<view style="font-size: 16px;font-weight: 900;">{{ item.screeningDate }}</view>
@ -12,8 +12,11 @@
<span>查看筛查结果</span>
</view>
</view>
</view>
<view v-else style="margin-top: 50%;">
<u-empty mode="order" icon-size='220' text="暂无筛查记录"></u-empty>
</view>
</template>
<script>

View File

@ -57,7 +57,7 @@
</view> -->
<view class="item">
诊断结果
<span>{{screeningResultData.diagnosticResult}}</span>
<span v-if="screeningResultData.diagnosticResult">{{screeningResultData.diagnosticResult}}</span>
</view>
</view>
</view>