daofu-applet/pages/statistic/j-b-x-x/index/index.wxml

35 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-01-29 17:42:38 +08:00
<title-bar title="基本信息统计"></title-bar>
2024-06-04 14:45:44 +08:00
<scroll-view scroll-y style="height: calc(100vh - {{topBarH}}px);" refresher-enabled bindrefresherrefresh="refresh" bindscrolltolower="dropDown" refresher-triggered="{{freshIng}}">
2024-06-06 17:12:17 +08:00
<view class="h-div v-center in-bg" catchtap="popModal" data-type="showTypePop">
2024-06-19 15:42:55 +08:00
<text class="lab">所属社区</text>
<text>{{ postData.areaPathName }}</text>
</view>
2024-01-29 17:42:38 +08:00
<view class="content">
<view class="table">
2024-06-19 15:42:55 +08:00
2024-06-06 17:12:17 +08:00
<view catchtap="changeItem" data-item="{{item}}" data-index="{{index}}" class="tab-item" wx:for="{{tab}}" wx:key="{{item.label}}">
2024-06-04 14:45:44 +08:00
<text class="lab">{{item.typeName}}</text>
2024-06-06 17:57:07 +08:00
<text class="val">{{item.houseNum}}</text>
<text class="flex">户</text>
2024-06-04 14:45:44 +08:00
<text class="val">{{item.typeNum}}</text>
2024-01-30 17:39:39 +08:00
<text class="flex">人</text>
2024-06-06 17:12:17 +08:00
<image class="arrow" src="/images/home/icon_arrow.png" />
2024-01-29 17:42:38 +08:00
</view>
</view>
<view class="space"></view>
</view>
2024-06-04 14:45:44 +08:00
</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;">
<tree-node id="tree" dataTree="{{unitTreelist}}" pros="{{unitTreepros}}" bindselect="handleselectunit" isOpenAll="true" />
2024-06-04 14:45:44 +08:00
</radio-group>
</view>
</view>