index.wxml 599 Bytes
Newer Older
李嘉林 committed
1
<view
程默 committed
2
  class="van-swipe-cell custom-class"
李嘉林 committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
  data-key="cell"
  catchtap="onClick"
  bindtouchstart="startDrag"
  catchtouchmove="{{ catchMove ? 'noop' : '' }}"
  capture-bind:touchmove="onDrag"
  bindtouchend="endDrag"
  bindtouchcancel="endDrag"
>
  <view style="{{ wrapperStyle }}">
    <view wx:if="{{ leftWidth }}" class="van-swipe-cell__left" data-key="left" catch:tap="onClick">
      <slot name="left" />
    </view>
    <slot />
    <view wx:if="{{ rightWidth }}" class="van-swipe-cell__right" data-key="right" catch:tap="onClick">
      <slot name="right" />
    </view>
  </view>
</view>