mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
23 lines
578 B
Plaintext
23 lines
578 B
Plaintext
<view
|
|
class="van-swipe-cell"
|
|
data-key="cell"
|
|
catchtap="onClick"
|
|
bindtouchstart="startDrag"
|
|
catchtouchmove="onDrag"
|
|
catchtouchend="endDrag"
|
|
catchtouchcancel="endDrag"
|
|
>
|
|
<view
|
|
style="{{ wrapperStyle }}"
|
|
bindtransitionend="onTransitionend"
|
|
>
|
|
<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>
|