You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.5 KiB
26 lines
1.5 KiB
<view>
|
|
<van-tabs sticky animated active="{{ active }}" bind:change="handlerTap">
|
|
<van-tab wx:for="{{list}}" wx:key="index" title="{{item.title}}">
|
|
<scroll-view scroll-y="true" bindscrolltolower="searchScrollLower">
|
|
<view class="cl-outer" wx:for="{{crisisList}}" wx:key="idx" wx:for-item="it">
|
|
<view class="cl-inner">
|
|
<view class="cl-i-d1">
|
|
<view class="cl-i-d-s1 lCs" wx:if="{{it._source.crisis === 3}}">高级危机</view>
|
|
<view class="cl-i-d-s1 mCs" wx:if="{{it._source.crisis === 2}}">中级危机</view>
|
|
<view class="cl-i-d-s1 dCs" wx:if="{{it._source.crisis === 1}}">低级危机</view>
|
|
<view class="cl-i-d-s2">{{it._source.firsttime}}</view>
|
|
</view>
|
|
<view class="cl-i-d2">
|
|
<view class="cl-i-d-s3">{{it._source.title}}</view>
|
|
<view class="cl-i-d-s4">{{it._source.content}}</view>
|
|
</view>
|
|
<view class="cl-i-line"></view>
|
|
<view class="cl-i-d-btn">查看详情</view>
|
|
</view>
|
|
</view>
|
|
<view class="loading" hidden="{{!loadMore}}">正在载入更多...</view>
|
|
<view class="loading" hidden="{{!loadAll}}">已加载全部</view>
|
|
</scroll-view>
|
|
</van-tab>
|
|
</van-tabs>
|
|
</view> |