riku
2025-04-27 f46786f11c5c08ead7501a82e5a71430ad69b782
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<t-popup visible="{{visible}}" placement="right" bind:visible-change="close" close-btn="{{closeBtn}}">
  <view class="filter-popup-wrap">
    <view class="filter-title">条件筛选</view>
    <t-divider />
    <t-divider content="行政区划" align="left" />
    <location-picker
      location="{{location}}"
      bind:onChange="onLocationChange"
      bind:locationInitValue="initLocation"
    ></location-picker>
    <t-divider content="集中区" align="left" />
    <area-picker area="{{area}}" bind:areaPickerChange="onAreaChange" bind:areaInitValue="initArea"></area-picker>
    <t-divider content="所属物业" align="left" />
    <management-picker
      management="{{management}}"
      bind:managementPickerChange="onManagementChange"
      bind:managementInitValue="initManagement"
    ></management-picker>
    <view class="filter-btns-wrap">
      <view class="filter-btn btn-reset" bind:tap="reset">重置</view>
      <view class="filter-btn btn-confirm" bind:tap="confirm" data-index="5"> 确定 </view>
    </view>
  </view>
</t-popup>