scroll-view-refresher-props.uvue 5.2 KB
Newer Older
1
<template>
H
hdx 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
  <view class="page-scroll-view">
    <page-head title="下拉刷新的scroll-view属性示例"></page-head>
    <view class="uni-margin-wrap">
      <scroll-view direction="vertical" :refresher-enabled="refresherEnabled" :refresher-threshold="refresherThreshold"
        :refresher-default-style="refresherDefaultStyle" :refresher-background="refresherBackground"
        :refresher-triggered="refresherTriggered" @refresherpulling="refresherpulling"
        @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore" @refresherabort="refresherabort"
        style="width: 100%;height: 100%;">
        <view class="item" :id="item.id" v-for="(item,_) in items">
          <text class="uni-text">{{item.label}}</text>
        </view>
      </scroll-view>
    </view>
15

H
hdx 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28
    <scroll-view class="uni-list" showScrollbar="true">
      <view class="uni-common-pb"></view>
      <text style="font-size: 12px;text-align: center;color: red; ">**下拉刷新的属性设置需要先打开下拉刷新开关**</text>
      <view class="uni-common-pb"></view>
      <view class="uni-option">
        <text>是否开启下拉刷新</text>
        <switch :checked="refresherEnabled" @change="handleTrunOnRefresher"></switch>
      </view>
      <view class="uni-option">
        <text>设置下拉刷新状态</text>
        <switch :disabled="!refresherEnabled" :checked="refresherTriggered"
          @change="refresherTriggered=!refresherTriggered"></switch>
      </view>
29

H
hdx 已提交
30 31 32 33 34 35
      <view class="uni-option">
        <text>设置下拉刷新阈值</text>
        <input style="width: 50px;border-width: 1px;text-align: center;  border-style: solid;"
          :disabled="!refresherEnabled" :value="refresherThreshold" type="number"
          @input="handleRefresherThresholdInput" />
      </view>
36

H
hdx 已提交
37 38 39 40 41
      <view class="uni-option">
        <text>设置下拉刷新区域背景颜色</text>
        <input style="width: 100px;border-width: 1px;text-align: center; border-style: solid;"
          :disabled="!refresherEnabled" :value="refresherBackground" @input="handleRefresherBackground" />
      </view>
42

H
hdx 已提交
43 44 45 46 47 48 49 50 51 52 53 54
      <view style="height: 100px;padding: 10px; ">
        <text>设置下拉刷新默认样式</text>
        <view class="uni-common-pb"></view>
        <view style="flex-direction: row;">
          <button style="padding: 5rpx; margin-right: 5px;" type="primary" size="mini"
            @click="refresherDefaultStyle = `none`">none</button>
          <button style="padding: 5rpx; margin-right: 10rpx; " type="primary" size="mini"
            @click="refresherDefaultStyle = `black`">black</button>
          <button style="padding: 5rpx;" type="primary" size="mini"
            @click="refresherDefaultStyle = `white`">white</button>
        </view>
      </view>
55

H
hdx 已提交
56 57
      <view class="uni-common-pb"></view>
    </scroll-view>
58

H
hdx 已提交
59
  </view>
60 61 62
</template>

<script>
H
hdx 已提交
63 64 65 66
  type Item = {
    id : string,
    label : string,
  }
67

H
hdx 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
  export default {
    data() {
      return {
        items: [] as Item[],
        refresherEnabled: false,
        refresherTriggered: false,
        refresherThreshold: 45,
        refresherDefaultStyle: "white",
        refresherBackground: "transparent",
      }
    },
    onLoad() {
      for (let i = 0; i < 10; i++) {
        const item = {
          id: "item" + i,
          label: "item" + i,
        } as Item;
        this.items.push(item);
      }
    },
    methods: {
      handleTrunOnRefresher() {
        this.refresherTriggered = false;
        //不能同时关闭下拉状态和关闭下拉刷新。
        setTimeout(() => {
          this.refresherEnabled = !this.refresherEnabled;
        }, 0)
      },
      handleRefresherThresholdInput(e : InputEvent) {
        const value = e.detail.value;
        if (value == "") {
          this.refresherThreshold = 45;
        } else {
          this.refresherThreshold = parseInt(e.detail.value);
        }
      },
      handleRefresherBackground(e : InputEvent) {
        const value = e.detail.value;
        this.refresherBackground = value;
      },
      //响应事件
      refresherpulling() {
        console.log("下拉刷新控件被下拉");
      },
      refresherrefresh() {
        console.log("下拉刷新被触发");
        this.refresherTriggered = true;
        //不能同时关闭下拉状态和关闭下拉刷新。
        setTimeout(() => {
          this.refresherTriggered = false;
        }, 1500)
      },
      refresherrestore() {
        console.log("下拉刷新被复位");
      },
      refresherabort() {
        console.log("下拉刷新被中止");
      }
    }
  }
128 129 130
</script>

<style>
H
hdx 已提交
131 132 133 134 135
  .uni-margin-wrap {
    height: 200px;
    margin-left: 25px;
    margin-right: 25px;
  }
136

H
hdx 已提交
137 138 139 140 141 142 143
  .item {
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 100%;
    background-color: azure;
    border-width: 1px;
xuty73419315's avatar
xuty73419315 已提交
144
    border-style: solid;
H
hdx 已提交
145 146
    border-color: chocolate;
  }
147

H
hdx 已提交
148 149 150 151
  .uni-text {
    color: black;
    font-size: 50px;
  }
152

H
hdx 已提交
153 154 155 156
  .uni-list {
    flex: 1;
    margin: 25px 25px 0 25px;
  }
157

H
hdx 已提交
158 159 160 161 162 163 164
  .uni-option {
    height: 50px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
165

H
hdx 已提交
166 167 168 169 170
  .picker-view {
    width: 100%;
    height: 320px;
    margin-top: 10px;
  }
171
</style>