epmet 工作端 小程序
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.

100 lines
5.3 KiB

2 years ago
<!--pages/resiAndHouse/resiAndHouse.wxml-->
<view class="group_1">
<view class="block_1">
<view class="box_15">
<text lines="1" class="text_1">{{agencyName}}</text>
2 years ago
</view>
<view class="text-wrapper_30">
<view bind:tap="handelClickSearchType" data-type="resi">
<text lines="1" class="text_3 {{selectVale === 'resi' ? 'font_bold' : ''}}">查询居民</text>
<image src="../../images/work/select.png" mode="" wx:if="{{selectVale == 'resi'}}" />
</view>
<view bind:tap="handelClickSearchType" data-type="house">
<text lines="1" class="text_3 {{selectVale === 'house' ? 'font_bold' : ''}}">查询房屋</text>
<image src="../../images/work/select.png" mode="" wx:if="{{selectVale == 'house'}}" />
</view>
</view>
<view class="inout_box">
<image src="../../images/work/search.png" mode="" class="search_img" />
<input type="text" placeholder="姓名/手机/身份证" bindinput="handelBlurKeyWord" bindblur="handelBlurKeyWord" value="{{keyWord}}" />
<view class="btn_box" bind:tap="handelClickSearch">
<image src="../../images/cardIcon.png" mode="" class="OCR_img" bind:tap="handelClickToOcr" />
<text>搜索</text>
2 years ago
</view>
</view>
</view> 。
2 years ago
</view>
<view class="group_2" wx:if="{{selectVale === 'resi'}}">
2 years ago
<view class="section_2">
<view class="box_16">
<text lines="1" class="text_4">{{cascaderName}}</text>
2 years ago
<view class="image-text_9">
<text lines="1" class="text_5" bind:tap="handelClickShowTree">切换</text>
<image src="../../images/swapHorizontal.png" class="image_8"></image>
</view>
</view>
<view class="box_17">
<view class="tabs">
<view class="tab_item {{activeType === index ? 'border_bto' : ''}}" wx:for="{{tabList}}" bind:tap="handelClickTab" data-index="{{index}}" data-category="{{item.category}}">
2 years ago
<view class="num">{{item.categoryCount}}</view>
<view class="name" style="color:{{activeType === index?'#3974f6':'#666666'}}">{{item.categoryName}}</view>
</view>
</view>
</view>
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
<view class="form_item" wx:for="{{tableData}}" :wx:key="{{index}}" bind:tap="toResiDetail" data-resiId="{{item.resiId}}">
<view class="box_18">
<text lines="1" class="text_16">{{item.name}}</text>
<view class="resi_tag" wx:if="{{item.categoryInfo.categoryNames}}">
<view class="text-wrapper_8" wx:for="{{item.categoryInfo.categoryNames.split(',')}}" wx:for-item="itemC">
{{itemC}}
</view>
2 years ago
</view>
<view class="text-wrapper_9">
<text lines="1" class="text_19">信息完整度:</text>
<text lines="1" class="text_20">40%</text>
</view>
2 years ago
</view>
<view class="box_19">
<view class="text-wrapper_10">
<text lines="1" class="text_21">国籍:</text>
<text lines="1" class="text_22">{{item.nationalityName || "--"}}</text>
</view>
<view class="text-wrapper_11">
<text lines="1" class="text_23">民族:</text>
<text lines="1" class="text_24">{{item.nationName || '--'}}</text>
</view>
2 years ago
</view>
<view class="text-wrapper_12">
<text lines="1" class="text_25">电话:</text>
<text lines="1" class="text_26">{{item.mobile}}</text>
</view>
<view class="text-wrapper_13">
<text lines="1" class="text_27">证件号</text>
<text lines="1" class="text_28">:</text>
<text lines="1" class="text_29">{{item.idNum}}</text>
</view>
<view class="text-wrapper_14">
<text lines="1" class="text_30">地址:</text>
<text lines="1" class="text_31">{{item.agencyName || ''}} {{item.homeName || ''}}</text>
</view>
<view class="text-wrapper_15">
<text lines="1" class="text_32">最新更新时间:</text>
<text lines="1" decode="true" class="text_33">{{item.updatedTime|| '--'}}</text>
2 years ago
</view>
</view>
<load-more loadVisible="{{loadMoreVisible}}" loadType="{{loadMoreType}}"></load-more>
<no-data isShow="{{nodata}}" wx:if="{{nodata}}"></no-data>
</scroll-view>
2 years ago
</view>
</view>
2 years ago
<custom-tab-bar></custom-tab-bar>
<van-popup show="{{ showAngenCascader }}" round position="bottom">
<van-cascader field-names="{{fieldName}}" wx:if="{{showAngenCascader}}" value="{{ searchOrgIdPath }}" title="请选择" options="{{ angencyList }}" bind:close="onClose" bind:finish="onFinish" />
</van-popup>