community.wxml 1.1 KB

12345678910111213141516171819202122
  1. <view class="{{blur}}">
  2. <community-top needs="{{info.trains}}" hot="{{info.focus}}" typical="{{info.examples}}"/>
  3. <view class="middle">
  4. <view class="middle-title">
  5. <view class="middle-text">我的发布</view>
  6. <view class="red-point"></view>
  7. </view>
  8. <edu-badge show="{{info.count}}" count="{{info.count}}" bindtap="toCommunityMessage" class="middle-bell">
  9. <van-image src="/images/ic_bell.png" width="50rpx" height="50rpx"/>
  10. </edu-badge>
  11. </view>
  12. <view class="bottom">
  13. <edu-loadmore emptyTxt="空空如也,快去发布吧!" isEmpty="{{rows.length == 0}}" isRefresh="{{isRefresh}}"
  14. isLoading="{{isLoading}}" isComplete="{{noMore}}">
  15. <edu-community-card res="{{item}}" bind:posttap="toDetail" wx:for="{{rows}}" wx:key="index"
  16. card-bg="card-bg">
  17. </edu-community-card>
  18. </edu-loadmore>
  19. </view>
  20. </view>
  21. <edu-publish-btn bindtap="publishInfo" wx:if="{{!show}}"></edu-publish-btn>
  22. <community-pop show="{{show}}" bind:close="onClickHide" bind:publish="onHandlePublish"></community-pop>