榆山居民端
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.
 

25 lines
1.3 KiB

<view class="header" style="height: {{statusHeight + navigationHeight}}px;">
<image class="header-bg" src="../../../../images/home/home-status.png" />
<view style="height: 80rpx;position: fixed;margin-top: 50rpx;width: 70rpx;z-index: 101;" bindtap="naviBack">
<image class="header-back" style="margin-top:{{statusHeight/1.5}}px" src="../../images/back.png"></image>
</view>
<view class="navigation" style="height: {{navigationHeight}}px; top: {{statusHeight}}px;">
社区讲坛
</view>
</view>
<view class="home" style="margin-top: {{statusHeight + navigationHeight}}px">
<scroll-view class="tab" scroll-x>
<view wx:for="{{tabList}}" wx:for-item="item" wx:for-index="index" wx:key="index" data-index="{{index}}" data-id="{{item.id}}" bindtap="changeTab" class="tab-item">
<view class="tab-name{{index == currentTabIndex? ' active' : ''}}">{{item.tabName}}</view>
<view class="tab-line{{index == currentTabIndex? ' active' : ''}}"></view>
</view>
</scroll-view>
<view class="propertyInfo" wx:if="{{!isLoading}}">
<class-list classList="{{classList}}" showJoin="{{currentTabIndex===0?true:false}}" bind:toClassDetail="navigateToDetail">
</class-list>
</view>
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
</view>