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.
39 lines
2.1 KiB
39 lines
2.1 KiB
<!--other/pages/qualityAcceptDetail/qualityAcceptDetail.wxml-->
|
|
<view class="search">
|
|
<van-search use-left-icon-slot use-action-slot shape="round" background="#eb3015" value="{{ keyWords }}" placeholder="输入电站编码、业主姓名" bind:change="onChange" bind:search="keyWordsSearch">
|
|
<image mode="aspectFit" class="icon-search" slot="left-icon" src="../../img/icon-search-white.png"></image>
|
|
</van-search>
|
|
<view style="height: 110rpx;"></view>
|
|
</view>
|
|
<view class="top-box">
|
|
<view class="row-list">
|
|
<view class="title-item"><block wx:if="{{detail.type == '1'}}">质检</block><block wx:if="{{detail.type == '2'}}">巡检</block>单号</view>
|
|
<text>{{detail.number}}</text>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<van-empty image="search" description="暂无数据" wx:if="{{cjEntry.length < 1}}" />
|
|
<view class="content" wx:for="{{cjEntry}}" wx:key="index">
|
|
<view class="content-list">
|
|
<view class="content-list-num content-title-text">
|
|
<block>电站编码:{{item.power_station_code}}<image src="../../img/copy.png" class="content-list-num-img" catchtap="copy" data-code="{{item.power_station_code}}" /></block>
|
|
</view>
|
|
<view class="content-list-info">
|
|
<view class="content-list-info-top-name">
|
|
<image src="../../img/content-list-info-top-name-img.png" class="content-list-info-top-img" />
|
|
{{item.tenant_name}}
|
|
<block wx:if="{{item.tenant_type=='1'}}">(户用屋顶)</block>
|
|
<block wx:else>(公共屋顶)</block>
|
|
</view>
|
|
<view class="content-list-info-address" wx:if="{{item.entryAddress}}">
|
|
<image src="../../img/content-list-info-address-img.png" class="content-list-info-address-img" />
|
|
<view class="content-list-info-address-area">{{item.entryAddress}} <image catch:tap="addrFn" data-obj="{{item.entryAddress}}" src="../../img/navigation.png" class="dh-icon" /></view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom-action">
|
|
<view class="actionSign" catchtap="bindSee" data-id="{{item.id}}" data-eid="{{item.entry_id}}">查看</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|