bottomTabs.wxml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <!--components/bottomTabs/bottomTabs.wxml-->
  2. <view class='bottom-tabs'>
  3. <view class="input-item" bind:tap="tapReplyAction">
  4. <image class="input-icon" src="../../images/edit.png"></image>
  5. <text class="txt">写评论…</text>
  6. </view>
  7. <view class="item" bind:tap="tapCommentAction">
  8. <image class="icon" src="../../images/message.png"></image>
  9. <text hidden="{{!commentNum}}">{{commentNum}}</text>
  10. </view>
  11. <view wx:if="{{!isAuthor}}" class="item" bind:tap="tapLikeAction">
  12. <image class="icon" src='{{isAttention == 1 ?"../../images/like_h.png" :"../../images/like_n.png"}}'></image>
  13. <text hidden="{{!likeNum}}">{{likeNum}}</text>
  14. </view>
  15. <button open-type='share' class="item share-btn">
  16. <image class="icon" src="../../images/wx.png"></image>
  17. </button>
  18. <view class="item" bind:tap="tapPostAction">
  19. <image class="icon" src="../../images/post.png"></image>
  20. </view>
  21. <!-- <block wx:if="{{!!isAuthor}}">
  22. <view class="item" bind:tap="collectionAction">
  23. <image class="icon" src='../../images/edit.png'></image>
  24. <text>编辑</text>
  25. </view>
  26. <view class="item" bind:tap="tapDeleteAction">
  27. <image class="icon" src='../../images/delete.png'></image>
  28. <text>删除</text>
  29. </view>
  30. </block> -->
  31. </view>