报告查询增加空格

main
yanzai 3 weeks ago
parent 72d9d1dc6f
commit c3993eb366

@ -572,7 +572,7 @@ class ReportController extends Controller
foreach ($item['基础项目列表'] as $i) {
$content_list[] = [
'title' => $i['基础项目名称'],
'content' => $i['结果值'] . $i['结果值单位'],
'content' => $i['结果值'] .' '.' '. $i['结果值单位'],
'icon' => $i['异常标识'],
'desc' => $i['结果值范围'],
];

@ -39,7 +39,7 @@
<view class="report_content_line_content_wrapper">
<view class="report_content_line_content_content_wrapper" :class="[
!!ii.icon ? 'report_content_line_content_content_red_wrapper' : ''
]">{{ ii.icon }}{{ ii.content }}</view>
]">{{ ii.icon }}<span style="white-space: pre;">{{ ii.content }}</span></view>
<view v-if="!!ii.desc" class="report_content_line_content_desc_wrapper">{{ ii.desc }}</view>
</view>
</view>

Loading…
Cancel
Save