25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
<!--pages/emergency/z-s/index/index.wxml-->
|
|
<title-bar title="应急值守"></title-bar>
|
|
<scroll-view scroll-y style="height: calc(100vh - 100rpx - {{topBarH}}px);" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="getList" lower-threshold="300" refresher-triggered="{{freshIng}}">
|
|
<!-- 列表 -->
|
|
<view class="item-bg" wx:for="{{list}}">
|
|
<view class="item">
|
|
<view class="head h-div v-center">
|
|
<view class="single"></view>
|
|
<view class="title ellipsis flex">{{item.name}}</view>
|
|
</view>
|
|
<view class="center">
|
|
<view>
|
|
<view class="time mobile" data-mobile="{{item.mobile}}" catchtap="call">联系电话:{{item.mobile}}</view>
|
|
<view class="time">值班时间:{{item.dutyTime}}</view>
|
|
<view class="time">值班地点:{{item.postName}}</view>
|
|
<view class="time">所属区域:{{item.areaName}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
<empty wx:if="{{list.length==0}}" />
|
|
<view class="space"></view>
|
|
</scroll-view> |