You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.3 KiB

<!--monitor/pages/station/station.wxml-->
<van-search shape="round" background="#FFF" value="{{ keyWords }}" placeholder="输入电站编号/手机号/业主姓名查询" bind:change="onChange" bind:search="keyWordsSearch">
</van-search>
<view wx:if="{{list.length>0}}">
<view class="content" wx:for="{{list}}" wx:key="index" bindtap="goDetail" data-code="{{item.stationCode}}" data-eid="{{item.entryId}}" data-id="{{item.id}}">
<view class="content-title">
<view class="content-title-text">
<image src="../img/dz_icon.png" class="dz_icon" />
电站编号:{{item.stationCode}}
</view>
</view>
<view class="content-list">
<view class="content-list-info">
<view class="content-list-info-top">
<view>{{item.ownerName}}</view>
<view class="ml-20">{{item.ownerPhone}}</view>
<image src="../img/tel.png" class="ml-20 tel_icon" catchtap="phone" data-phone="{{item.ownerPhone}}" />
</view>
<view class="content-list-info-address">
<view class="content-list-info-address-area">{{item.province}}{{item.city}}{{item.district}}{{item.address}}</view>
</view>
</view>
</view>
</view>
</view>
<view class='lack' wx:else><image src="../img/6.png" mode='aspectFit'></image></view>
<!-- 底部导航 -->
<tabBar name='order' active="1"></tabBar>