beefast-mini-deliveryman/components/swipeButton/index.wxml
2025-02-18 18:26:07 +08:00

9 lines
600 B
Plaintext

<movable-area class="move-area" id="moveArea">
<movable-view class="move-view" direction="horizontal" x="{{moveViewX}}"
damping="100" bindchange="buttonOnMove" disabled="{{loading}}"
capture-catch:touchcancel="buttonMoveCancel" capture-catch:touchend="buttonMoveCancel">
<image class="icon" src="/assets/icon/double-right-arrow.png"/>
</movable-view>
<view class="tips" style="opacity: {{textOpacity||1}};right:{{textRight}}rpx;" wx:if="{{!loading}}">{{buttonText}}</view>
<view class="tips loading" style="opacity: {{loading?1:0}};">{{buttonLoadingText}}</view>
</movable-area>