2024-01-29 17:42:38 +08:00
|
|
|
<!-- 应急预案 -->
|
|
|
|
|
<title-bar title="应急预案"></title-bar>
|
2024-01-30 16:35:55 +08:00
|
|
|
<scroll-view scroll-y style="height: calc(100vh - 170rpx)" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" refresher-triggered="{{freshIng}}">
|
2024-01-29 17:42:38 +08:00
|
|
|
<scroll-view scroll-x class="filter">
|
|
|
|
|
<view class="tag text-blue {{index==curTab?'cur':''}}" wx:for="{{tabs}}" wx:key catchtap="tabSelect" data-index="{{index}}">
|
2024-06-04 14:45:44 +08:00
|
|
|
{{item.emerTypeName}}
|
2024-01-29 17:42:38 +08:00
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
<view class="cu-bar search">
|
|
|
|
|
<view class="search-form round">
|
|
|
|
|
<text class="cuIcon-search"></text>
|
|
|
|
|
<input type="text" placeholder="请输入关键字" confirm-type="search"></input>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="item-bg" wx:for="{{list}}">
|
|
|
|
|
<view catchtap="toDetail" data-item="{{item}}" class="item">
|
|
|
|
|
<view class="h-div v-center">
|
|
|
|
|
<text class="lab">预案名称:</text>
|
2024-01-30 16:35:55 +08:00
|
|
|
<text class="val">{{item.planname}}</text>
|
2024-01-29 17:42:38 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="line"></view>
|
|
|
|
|
<view class="h-div v-center">
|
|
|
|
|
<text class="lab">预案类型:</text>
|
2024-01-30 16:35:55 +08:00
|
|
|
<text class="val">{{item.othtypename}}</text>
|
2024-01-29 17:42:38 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="line"></view>
|
|
|
|
|
<view class="h-div v-center">
|
2024-01-30 16:35:55 +08:00
|
|
|
<text class="lab">简介:</text>
|
|
|
|
|
<text class="val">{{item.introduction}}</text>
|
2024-01-29 17:42:38 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="line"></view>
|
|
|
|
|
<view class="h-div v-center">
|
|
|
|
|
<text class="download">附件下载</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-01-30 16:35:55 +08:00
|
|
|
<empty wx:if="{{list.length==0}}" />
|
2024-01-29 17:42:38 +08:00
|
|
|
<view class="space"></view>
|
|
|
|
|
</scroll-view>
|