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.

113 lines
5.0 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">海伦路街道</text>
</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"/>
2 years ago
<text bindtap="onSearchMessage">搜索</text>
2 years ago
</view>
</view>
</view> 。
2 years ago
</view>
<view class="group_2" wx:if="{{selectVale === 'resi'}}">
<view class="section_2">
<view class="box_16">
<text lines="1" class="text_4">{{cascaderValue}}</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}}">
<view class="num">{{item.categoryCount}}</view>
<view class="name" style="color:{{activeType === index?'#3974f6':'#666666'}}">{{item.categoryName}}</view>
</view>
</view>
</view>
<view class="content">
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower">
<view class="form_item" wx:for="{{resiList}}" :wx:key="{{index}}" bind:tap="toResiDetail" data-resiId="{{item.resiId}}">
2 years ago
<view class="box_18">
<text lines="1" class="text_16">{{item.name}}</text>
<view class="resi_tag">
2 years ago
<view class="text-wrapper_8" wx:for="{{item.categoryInfo.categoryNames}}" wx:for-item="itemC">
2 years ago
{{itemC}}
</view>
</view>
<view class="text-wrapper_9">
<text lines="1" class="text_19">信息完整度:</text>
<text lines="1" class="text_20">40%</text>
</view>
</view>
<view class="box_19">
<view class="text-wrapper_10" >
2 years ago
<text lines="1" class="text_21">国籍:</text>
2 years ago
<text lines="1" class="text_22">{{item.nationalityName || "--"}}</text>
2 years ago
</view>
<view class="text-wrapper_11" >
2 years ago
<text lines="1" class="text_23">民族:</text>
<text lines="1" class="text_24">{{item.nationName || '--'}}</text>
2 years ago
</view>
</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>
2 years ago
<text lines="1" class="text_31">{{item.agencyName || ''}} {{item.homeName || ''}}</text>
2 years ago
</view>
<view class="text-wrapper_15" >
2 years ago
<text lines="1" class="text_32">最新更新时间:</text>
<text lines="1" decode="true" class="text_33">{{item.updatedTime|| '--'}}</text>
2 years ago
</view>
</view>
</scroll-view>
</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}}"
2 years ago
wx:if="{{ showAngenCascader }}"
2 years ago
value="{{ cascaderValue }}"
title="请选择"
options="{{ angencyList }}"
bind:close="onClose"
bind:finish="onFinish"
/>
</van-popup>