index.wxml 574B

12345678910111213141516171819202122
  1. <view
  2. class="van-swipe-cell"
  3. data-key="cell"
  4. bindtap="onClick"
  5. bindtouchstart="startDrag"
  6. bindtouchmove="onDrag"
  7. bindtouchend="endDrag"
  8. bindtouchcancel="endDrag"
  9. >
  10. <view
  11. style="{{ wrapperStyle }}"
  12. bindtransitionend="onTransitionend"
  13. >
  14. <view wx:if="{{ leftWidth }}" class="van-swipe-cell__left" data-key="left" catch:tap="onClick">
  15. <slot name="left" />
  16. </view>
  17. <slot />
  18. <view wx:if="{{ rightWidth }}" class="van-swipe-cell__right" data-key="right" catch:tap="onClick">
  19. <slot name="right" />
  20. </view>
  21. </view>
  22. </view>