<!--articleLists.wxml 文章列表-->
<view style="height:100%;background:#eee">
<view class="">
<view class="title_top_view">
<label class="scroll_title_label " wx:for="{{titles}}">
<label style="{{current_index == index? 'border-bottom: 2px solid #48C17B;' : 'border-bottom:0px solid #f4879b;'}}" class="title_text" bindtap="titleClick" data-index="{{index}}">{{item}}</label>
</label>
</view>
<view wx:if="{{current_index==0}}" class="content1" style="margin-top:50px;">
<view class="" style="background:#ffffff;margin-top:10px;padding-bottom: 10px;">
<view class="report-info-bg">
<view class="report-info-box">
<block wx:for="{{checkData.wz}}">
<view class="report-info-item">
<text class="report-info-text-title">{{item.title}}:</text>
<text>{{item.value}}</text>
</view>
</block>
</view>
</view>
</view>
</view>
<!-- 体格检查 -->
<view wx:if="{{current_index==1}}" class="content2" style="margin-top:50px;">
<view class="" style="background:#ffffff;padding-bottom: 10px;">
<view class="report-info-bg">
<view class="report-info-box">
<block wx:for="{{checkData.tg}}">
<view class="report-info-item">
<text class="report-info-text-title">{{item.title}}:</text>
<text>{{item.value}}</text>
</view>
</block>
</view>
</view>
</view>
</view>
<!-- 一般检查 -->
<view wx:if="{{current_index==2}}" class="content3" style="margin-top:50px;">
<view class="" style="background:#ffffff;padding-bottom: 10px;">
<view class="report-info-bg">
<view class="report-info-box">
<block wx:for="{{checkData.yb}}">
<view class="report-info-item">
<text class="report-info-text-title">{{item.title}}:</text>
<text>{{item.value}}</text>
</view>
</block>
</view>
</view>
</view>
</view>
<!-- 辅助检查 -->
<view wx:if="{{current_index==3}}" class="content4" style="margin-top:40px;">
<view wx:for="{{checkData.fz}}" wx:if='{{needHidden == "false" || (needHidden == "true" && item.hidden != "yes")}}'>
<view class="fuzhu_check" wx:if='{{item.top_title}}'>{{item.top_title}}</view>
<view class="report-info-bg" wx:if='{{item.top_title}}'>
<view class="report-info-box">
<block wx:for="{{item.content}}" wx:for-index="sectionIndex" wx:for-item="sectionItem">
<view class="report-info-item">
<text class="report-info-text-title">{{sectionItem.title}}:</text>
<text>{{sectionItem.value}}</text>
</view>
</block>
</view>
</view>
</view>
<view class="report-info-bg">
<view class="report-info-box">
<block wx:for="{{checkData.fz}}" wx:if='{{needHidden == "false" || (needHidden == "true" && item.hidden != "yes")}}'>
<view class="report-info-item" wx:if='{{item.title}}'>
<text class="report-info-text-title">{{item.title}}:</text>
<text>{{item.value}}</text>
</view>
</block>
</view>
</view>
</view>
</view>
</view>
<view class="mask_subscribe_bg1" wx:if="{{flag}}">
<view class="mask_subscribe_content1">
<view class="mask_subscribe_title1">{{showTitle}}</view>
<view class="mask_subscribe_time1">
<label class="mask_subscribe_content_text1">{{showContent}}</label>
</view>
<view class="mask_subscribe_content_closeBtn1" bindtap="closeMask">知道了</view>
</view>
</view>