system_notifacations.wxml 3.18 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
<view style="height:100%;background:#fff">
<view class="main">
<view class="title_top_view">
<scroll-view class="title_scroll" scroll-x="true" scroll-y="false">
<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-categoryid="{{item.id}}" data-index="{{index}}">{{item.title}}</label>

</label>
</scroll-view>
</view>
<scroll-view class="list_scroll" scroll-y="true" bindscrolltolower="myScroll">

<view>
<block hover-class="weui-cell_active" wx:for="{{list}}">
<view hidden="{{item.type==1?false:true}}" class="high_risk_main">
<!-- <view class="high_risk_title">{{item.title}}</view> -->
<view class="red_line"></view>
<view class="other_three_title">{{item.title}}</view>
<view class="other_three_content">{{item.content}}</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">{{item.time}}</label>
<label class="high_rish_hospital_name">{{item.hospitalName}}</label>
</view>
</view>
<view hidden="{{item.type==1?true:false}}" class="other_three_main">
<view class="green_line"></view>
<view class="other_three_title">{{item.title}}</view>
<view class="other_three_content">{{item.content}}</view>
<view class="line"></view>
<view class="high_rish_content1">
<label class="other_three_date">{{item.time}}</label>
<label class="other_three_hospital_name">{{item.hospitalName}}</label>
</view>
</view>
</block>
<view class="loadMoreView" wx:if="{{hasMore}}">加载更多...</view>
</view>
</scroll-view>
</view>

<image class="icon_refresh" src="../../source/group2.png" bindtap="refesh"></image>

</view>