checkTabList.wxml 4.22 KB
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
<!--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>