44 lines
1.9 KiB
Plaintext
44 lines
1.9 KiB
Plaintext
<title-bar title="基本信息统计"></title-bar>
|
|
<scroll-view scroll-y style="height: calc(100vh - {{topBarH}}px);" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="dropDown" refresher-triggered="{{freshIng}}">
|
|
<view class="h-div v-center in-bg" catchtap="popModal" data-type="showTypePop">
|
|
<text class="lab">所属社区</text>
|
|
<text>{{ postData.areaPathName }}</text>
|
|
</view>
|
|
<view class="content">
|
|
<view class="table">
|
|
|
|
<view catchtap="changeItem" data-item="{{item}}" data-index="{{index}}" class="tab-item" wx:for="{{tab}}" wx:key="{{item.label}}">
|
|
<text class="lab">{{item.typeName}}</text>
|
|
<text class="val">{{item.houseNum}}</text>
|
|
<text class="flex">户</text>
|
|
<text class="val">{{item.typeNum}}</text>
|
|
<text class="flex">人</text>
|
|
<image class="arrow" src="/images/home/icon_arrow.png" />
|
|
</view>
|
|
</view>
|
|
<view class="space"></view>
|
|
</view>
|
|
</scroll-view>
|
|
<!-- 选择所属社区 -->
|
|
<view class="cu-modal {{showTypePop?'show':''}}">
|
|
<view class="cu-dialog pop" catchtap>
|
|
<view class="cu-bar justify-end pop-header">
|
|
<view class="content">选择所属社区</view>
|
|
<view class="action" catchtap="popModal" data-type="showTypePop">
|
|
<text class="cuIcon-close text-red"></text>
|
|
</view>
|
|
</view>
|
|
|
|
<radio-group class="block" style="max-height: 50vh;overflow-y: scroll;">
|
|
<!-- <view class="cu-list menu text-left">
|
|
<view class="cu-item" wx:for="{{TypeData}}" wx:key>
|
|
<label catchtap="typeChange" data-index="{{index}}" class="flex justify-between align-center flex-sub">
|
|
<view class="flex-sub">{{item.orgname}}</view>
|
|
</label>
|
|
</view>
|
|
</view> -->
|
|
<tree-node id="tree" dataTree="{{unitTreelist}}" pros="{{unitTreepros}}" bindselect="handleselectunit" isOpenAll="true" />
|
|
</radio-group>
|
|
|
|
</view>
|
|
</view> |