10 changed files with 472 additions and 93 deletions
After Width: | Height: | Size: 2.0 KiB |
@ -1,4 +1,14 @@ |
|||
{ |
|||
"usingComponents": {}, |
|||
"usingComponents": { |
|||
"custom-tab-bar":"../../components/custom-tab-bar", |
|||
"load-more": "../../components/loadMore/loadMore", |
|||
"no-data": "../../components/noData/nodata", |
|||
"van-tab": "@vant/weapp/tab/index", |
|||
"van-tabs": "@vant/weapp/tabs/index", |
|||
"van-cascader": "@vant/weapp/cascader/index", |
|||
"van-popup": "@vant/weapp/popup/index" |
|||
|
|||
}, |
|||
"navigationBarTitleText": "待采集居民房屋列表" |
|||
|
|||
} |
@ -1,4 +1,12 @@ |
|||
{ |
|||
"usingComponents": {}, |
|||
"usingComponents": { |
|||
"custom-tab-bar":"../../components/custom-tab-bar", |
|||
"load-more": "../../components/loadMore/loadMore", |
|||
"no-data": "../../components/noData/nodata", |
|||
"van-tab": "@vant/weapp/tab/index", |
|||
"van-tabs": "@vant/weapp/tabs/index", |
|||
"van-cascader": "@vant/weapp/cascader/index", |
|||
"van-popup": "@vant/weapp/popup/index" |
|||
}, |
|||
"navigationBarTitleText": "居民信息不完整列表" |
|||
} |
@ -1,54 +1,60 @@ |
|||
<!--subpages/resnoinformation/pages/resnoinformation/resnoinformation.wxml--> |
|||
<view class="header"> |
|||
<view class="card"> |
|||
<picker range="{{serviceOptions}}" range-key="label" bind:change="getServiceuserList" class="card_one"> |
|||
<view class="items"> |
|||
<view class="text1">海伦路街道</view> |
|||
</view> |
|||
</picker> |
|||
<view class="card_one" bind:tap="onShowPoint"> |
|||
<view class="items" > |
|||
<view class="text1" >{{cascaderName}}</view> |
|||
</view> |
|||
</view> |
|||
<view> |
|||
<picker range="{{serviceOptiondList}}" bind:change="serviceOptiondListChange" range-key="label" class="card_two"> |
|||
<view class="card_two" bind:tap="onclickResident"> |
|||
<view class="items"> |
|||
<view class="text2">按照居民分类</view> |
|||
</view> |
|||
</picker> |
|||
</view> |
|||
</view> |
|||
<view class="card_three"> |
|||
<text class="test3">筛选</text> |
|||
</view> |
|||
</view> |
|||
|
|||
|
|||
</view> |
|||
<view class="context"> |
|||
<scroll-view lass="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower"> |
|||
<scroll-view class="scroll" scroll-y="{{true}}" lower-threshold="{{ lowerThreshold }}" bindscrolltolower="onScrollToLower"> |
|||
<view class="card_top"> |
|||
<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 class="line"> |
|||
<view class="information"> |
|||
<view class="name"> |
|||
<text lines="1" class="text_1">杨*冬</text> |
|||
</view> |
|||
|
|||
<view class="lable"> |
|||
<text class="text_2">失眠</text> |
|||
</view> |
|||
</view> |
|||
<view class="information_1"> |
|||
|
|||
<text lines="1" class="text_3">信息完整度:</text> |
|||
<text lines="1" class="text_4">50%</text> |
|||
</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 class="phone"> |
|||
<text lines="1" class="test_5">电话:</text> |
|||
<text lines="1" class="text_6">123456</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 class="idCard"> |
|||
<text lines="1" class="text_7">证件号:</text> |
|||
<text lines="1" class="text_8">1717</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> |
|||
<view class="address"> |
|||
<text lines="1" class="text_9">地址:</text> |
|||
<text lines="1" class="text_10">{{item.agencyName || ''}} {{item.homeName || ''}}</text> |
|||
</view> |
|||
</view> |
|||
</scroll-view> |
|||
</view> |
|||
<van-popup show="{{ showStreet }}" round position="bottom"> |
|||
<van-cascader field-names="{{fieldName}}" wx:if="{{showStreet}}" value="{{ searchOrgIdPath }}" title="请选择" options="{{ angencyList }}" bind:close="onClose" bind:finish="onFinish" /> |
|||
</van-popup> |
|||
<van-popup show="{{ showResident }}" round position="bottom"> |
|||
<van-cascader field-names="{{fieldNames}}" wx:if="{{showResident}}" value="{{ searchOrgIdPath }}" title="请选择" options="{{ dicts.nationalityList }}" bind:close="onClose" bind:finish="onFinish" /> |
|||
</van-popup> |
Loading…
Reference in new issue