38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
|
|
<!--pages/emergency/resourse/index/index.wxml-->
|
||
|
|
<title-bar title="应急通讯录"></title-bar>
|
||
|
|
<!-- 搜索 -->
|
||
|
|
<view class="cu-bar search">
|
||
|
|
<view class="search-form round">
|
||
|
|
<text class="cuIcon-search"></text>
|
||
|
|
<input value="{{condition}}" bindinput="inputSearch" type="text" placeholder="请输入关键字" confirm-type="search"></input>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<scroll-view scroll-y style="height: calc(100% - 170rpx)" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" refresher-triggered="{{freshIng}}">
|
||
|
|
<!-- 列表 -->
|
||
|
|
<view class="item-bg" wx:for="{{list}}">
|
||
|
|
<view catchtap="toDetail" data-item="{{item}}" class="item">
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<view class="lab flex">应急队伍名称</view>
|
||
|
|
<image class="guide" src="/images/emergency/icon-guide.png" />
|
||
|
|
<view class="phone">导航 3km</view>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="lab">联系人:</text>
|
||
|
|
<text class="val flex">张三</text>
|
||
|
|
<text class="phone">18325456264</text>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="lab">队伍人数:</text>
|
||
|
|
<text class="val">20</text>
|
||
|
|
</view>
|
||
|
|
<view class="line"></view>
|
||
|
|
<view class="h-div v-center">
|
||
|
|
<text class="lab">职责范围:</text>
|
||
|
|
<text class="val">-</text>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="space"></view>
|
||
|
|
</scroll-view>
|