You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
477 B
9 lines
477 B
<view class="pulldown-refresh" bindtouchstart="touchstart" bindtouchmove="touchmove" bindtouchend="touchend">
|
|
<view class="pulldown-state">
|
|
<image class="loading" src="../../images/loading.gif" />
|
|
<view class="loading-state">{{state == 1 ? '下拉刷新' : state == 2 ? '松开刷新' : '刷新中...'}}</view>
|
|
</view>
|
|
<view class="pulldown-content" style="transform: translateY({{translateHeight}}rpx)">
|
|
<slot name="content"></slot>
|
|
</view>
|
|
</view>
|