minePush.wxml 645 B

12345678910111213141516171819
  1. <!--pages/minePush/minePush.wxml-->
  2. <import src="../template/template.wxml"/>
  3. <template is="contentList" data="{{contentList}}"/>
  4. <view hidden="{{handleStatus}}" class="handle-box">
  5. <view catchtap="handleShow" class="handle-bg"></view>
  6. <view class="hadle-view">
  7. <image catchtap="handleShow" src="/static/img/close2.png"></image>
  8. <view class="handle-item" catchtap="deleteConFun">
  9. <image src="/static/img/del.png"></image>
  10. <text>删除</text>
  11. </view>
  12. </view>
  13. </view>
  14. <view hidden="{{contentList.length!=0}}" class="nonedata-style">
  15. <image src="/static/img/hemaNo.png"></image>
  16. <text>暂无数据</text>
  17. </view>