38 lines
1.4 KiB
Plaintext
38 lines
1.4 KiB
Plaintext
|
|
<!-- 应急预案 -->
|
||
|
|
<title-bar title="应急预案"></title-bar>
|
||
|
|
<scroll-view scroll-y style="height: calc(100% - 170rpx)" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" refresher-triggered="{{freshIng}}">
|
||
|
|
<scroll-view scroll-x class="filter">
|
||
|
|
<view class="tag text-blue {{index==curTab?'cur':''}}" wx:for="{{tabs}}" wx:key catchtap="tabSelect" data-index="{{index}}">
|
||
|
|
{{item.lab}}
|
||
|
|
</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>
|
||
|
|
<text class="val">{{item.name}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="lab">预案类型:</text>
|
||
|
|
<text class="val">{{item.type}}</text>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="lab">备注:</text>
|
||
|
|
<text class="val">-</text>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="download">附件下载</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="space"></view>
|
||
|
|
</scroll-view>
|