index.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="greetingBox">
  2. <view class="template" wx:for="{{5}}" wx:key="index">
  3. <view class="header">
  4. <view class="left">
  5. <view class="title">模版名字</view>
  6. <view class="time">2022-11-03 11:01</view>
  7. </view>
  8. <view class="right" wx:if="{{isMy}}">
  9. <image src="/static/index/delete.png" class="delete" />
  10. <view class="text">删除</view>
  11. </view>
  12. </view>
  13. <view class="body">
  14. <image src="/static/image/play-btn.png" class="playBtn" />
  15. </view>
  16. <view class="footer">
  17. <view class="countBox">
  18. <view class="box">
  19. <image src="/static/image/play.png" class="icon" />
  20. <view class="num">12312</view>
  21. </view>
  22. <view class="box">
  23. <image src="/static/image/red_like_empty.png" class="icon" />
  24. <view class="num">0</view>
  25. </view>
  26. </view>
  27. <view class="handle" style="justify-content:{{isMy?'center':'space-between'}}">
  28. <image src="http://reader-wx.ai160.com/images/reader/card/send_blessings.png" class="btn"
  29. wx:if="{{isMy}}" />
  30. <image src="http://reader-wx.ai160.com/images/reader/card/show_off.png" class="btn" wx:if="{{!isMy}}" />
  31. <image src="http://reader-wx.ai160.com/images/reader/card/wyyw.png" class="btn" wx:if="{{!isMy}}" />
  32. </view>
  33. </view>
  34. </view>
  35. </view>