system_notifacations.wxml 2.17 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
<view class="main">

<scroll-view style="" bindscrolltolower="loadMore">

<view>
<block hover-class="weui-cell_active" wx:for="{{list}}">
<view hidden="{{item.isHighRisk}}" class="high_risk_main">
<view class="high_risk_title">高危紧急通知</view>
<view class="high_rish_content1">
<label class="high_rish_content_before">危急值:</label>
<label class="high_rish_content_after">危急值</label>
</view>
<view class="high_rish_content1">
<label class="high_rish_content_before">危急项:</label>
<label class="high_rish_content_after">危急项</label>
</view>
<view class="high_rish_content1">
<label class="high_rish_content_before">紧急提醒:</label>
<label class="high_rish_content_after">qwertyuiopasdfghjklzxcvbnmqwertyuiopasdfghjklzxcvbnm</label>
</view>
<view class="line"></view>
<view class="high_rish_content1">
<label class="high_rish_date">2017-7</label>
<label class="high_rish_hospital_name">紧急提醒</label>
</view>
</view>
<view hidden="{{!item.isHighRisk}}" class="other_three_main">
<view class="green_line"></view>
<view class="other_three_title">高危紧急通知</view>
<view class="other_three_content">公司的复苏的还记得公司的复苏的还记得公司的复苏的还记得</view>
<view class="line"></view>
<view class="high_rish_content1">
<label class="other_three_date">2017-7</label>
<label class="other_three_hospital_name">紧急提醒</label>
</view>
</view>
</block>
<view class="loadMoreView" wx:if="{{hasMore}}">加载更多...</view>
</view>
</scroll-view>

</view>