You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.5 KiB
37 lines
1.5 KiB
<!-- <loading id="loading" showed="{{!iniLoaded}}"></loading> -->
|
|
<view wx:if="{{iniLoaded}}" class="list-container">
|
|
<view class="list-wr">
|
|
<view class="left-wr">
|
|
<scroll-view class="scroll-view" scroll-y="{{true}}">
|
|
<view class="list">
|
|
<view wx:for="{{cateList}}" wx:key="index" data-index="{{index}}"
|
|
class="item {{ current === index && 'item-on'}}" bind:tap="handleTabs">
|
|
<view class="text">{{ item.categoryName }}</view>
|
|
</view>
|
|
<!-- <view class="item"><view class="text">便民服务</view></view>
|
|
<view class="item"><view class="text">城市建设</view></view>
|
|
<view class="item item-on"><view class="text">社区建设城市建设城市建设</view></view>
|
|
<view class="item">
|
|
<view class="text">社区自治</view>
|
|
</view> -->
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<view class="right-wr">
|
|
<scroll-view class="scroll-view" scroll-y="{{true}}">
|
|
<view wx:if="{{ rightList.length > 0 }}" class="list">
|
|
<view wx:for="{{rightList}}" wx:key="index" class="item">
|
|
<view class="item-cate">{{ item.categoryName }}</view>
|
|
<view class="item-btn">
|
|
<view data-index="{{index}}" bind:tap="handleAppoint">预约</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
<view wx:else class="no-data">暂无分类</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|