beerCircles.wxml 891 B

12345678910111213141516171819202122232425262728
  1. <!--pages/beerCircles/beerCircles.wxml-->
  2. <view hidden="{{contentList.length!=0}}" class="nonedata-style">
  3. <image src="/static/img/hemaNo.png"></image>
  4. <text>暂无数据</text>
  5. </view>
  6. <import src="../template/template.wxml"/>
  7. <template is="contentList" data="{{contentList}}"/>
  8. <view hidden="{{handleStatus}}" class="handle-box">
  9. <view catchtap="handleShow" class="handle-bg"></view>
  10. <view class="hadle-view">
  11. <image catchtap="handleShow" src="/static/img/close2.png"></image>
  12. <!-- <view class="handle-item">
  13. <image src="/static/img/nolike.png"></image>
  14. <text>不感兴趣</text>
  15. </view> -->
  16. <view class="handle-item" catchtap="toReport">
  17. <image src="/static/img/jubao.png"></image>
  18. <text>举报</text>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="add-btn" bindtap="toaddArticle">
  23. <image src="/static/img/addCircles.png"></image>
  24. </view>