dm-wechat-mini/pages/help/community/index.wxml

20 lines
896 B
Plaintext

<view class="custom-scroll-view">
<list-view class="community-list main" bind:refresh="refreshList"
bind:loadMore="loadList" refresher-triggered="{{pager.refreshTrigger}}"
loading="{{pager.loading}}" load-all="{{pager.loadAll}}">
<view class="item {{item.id==currentCommunity.id?'current':''}}" wx:for="{{communityList}}" wx:key="index"
bind:tap="onSelectItem" data-item="{{item}}">
<view class="title">
<image class="icon" src="/assets/icon/help/house.png"/>
<label class="label">{{item.name}}</label>
</view>
<view class="sub-title">
<label class="key">{{item.address}}{{item.address}}</label>
<label class="value">{{item.distance||''}}</label>
</view>
</view>
</list-view>
<view class="bottom-bar-v2">
<button type="primary" bind:tap="applyNewCommunity">申请开通小区</button>
</view>
</view>