// 这里是滚动内容2、源码super-srcoll-view.wxml
当前位置:   article > 正文

微信小程序scroll-view实现下拉刷新_微信小程序 scroll-view 下拉刷新

微信小程序 scroll-view 下拉刷新
1、使用方法
<super-scroll-view class="phone-body" bind:lower="onReachBottom" bind:pulldown="onPullDownRefresh"
      refreshertriggered="{
  {refreshertriggered}}">
      // 这里是滚动内容
</super-scroll-view>
  • 1
  • 2
  • 3
  • 4
  • 5
2、源码

super-srcoll-view.wxml

<scroll-view class="height-full" scroll-y="{
  {true}}" refresher-triggered="{
  {srefreshertriggered}}" refresher-enabled="{
  {true}}"
    bindscrolltolower="loadMore" bindscrolltoupper="scrolltoupper" bindscroll="onPageScroll" bindtouchstart="touchStart"
    bindtouchend="touchEnd">
    <slot />
</scroll-view>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

super-srcoll-view.ts

Component({
  options: {
    addGlobalClass: true
  },
  /**
   * 组件的属性列表
   */
  properties: {
    r
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/276265
推荐阅读
相关标签