index.wxml 467 B

12345678910111213141516
  1. <view class="wrap">
  2. <view class="content {{animate ? 'animate' : ''}}"
  3. bindtouchstart="handleTouchStart"
  4. bindtouchmove="handleTouchMove"
  5. bindtouchend="handleTouchEnd"
  6. data-type="slide"
  7. style="transform: translateX({{translateX * 2}}rpx)"
  8. >
  9. <slot/>
  10. </view>
  11. <view class="action-wrap">
  12. <view class="action delete" bindtap="handleAction" data-type="delete">
  13. <text>删除</text>
  14. </view>
  15. </view>
  16. </view>