37 lines
1.5 KiB
Plaintext
37 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(100vh - 170rpx - 100rpx)" 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">
|
|
<text class="lab">联系人:</text>
|
|
<text class="val flex">{{item.chinaname}}</text>
|
|
<text class="phone">{{item.mobiletel}}</text>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="h-div v-center">
|
|
<text class="lab">部门名称:</text>
|
|
<text class="val flex">{{item.unitName}}</text>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="h-div v-center">
|
|
<text class="lab">职务名称:</text>
|
|
<text class="val flex">{{item.performName}}</text>
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="h-div v-center">
|
|
<text class="lab">角色:</text>
|
|
<text class="val">{{item.roleName}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="space"></view>
|
|
</scroll-view> |