12345678910111213141516171819202122232425262728 |
- <!--pages/beerCircles/beerCircles.wxml-->
- <view hidden="{{contentList.length!=0}}" class="nonedata-style">
- <image src="/static/img/hemaNo.png"></image>
- <text>暂无数据</text>
- </view>
- <import src="../template/template.wxml"/>
- <template is="contentList" data="{{contentList}}"/>
- <view hidden="{{handleStatus}}" class="handle-box">
- <view catchtap="handleShow" class="handle-bg"></view>
- <view class="hadle-view">
- <image catchtap="handleShow" src="/static/img/close2.png"></image>
- <!-- <view class="handle-item">
- <image src="/static/img/nolike.png"></image>
- <text>不感兴趣</text>
- </view> -->
- <view class="handle-item" catchtap="toReport">
- <image src="/static/img/jubao.png"></image>
- <text>举报</text>
- </view>
- </view>
- </view>
- <view class="add-btn" bindtap="toaddArticle">
- <image src="/static/img/addCircles.png"></image>
- </view>
|