xing-refresh.vue 4.21 KB
Newer Older
huahua committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
<template>
	<view>
		<movable-area :style="'height:' + scrollHeight + 'px;width:100%'">
			<movable-view :style="'height:' + (topHeight + scrollHeight) + 'px;width:100%;z-index:3'" direction="vertical"
			 :out-of-bounds="true" :disabled="!scrollmark || status == 3" :y="y" :damping="50" @touchstart="touchstart"
			 @touchend="touchend" @change="change">
				<view :style="'height:' + topHeight + 'px;position:relative'">
					<slot name="top"></slot>
				</view>
				<scroll-view :style="'height:' + scrollHeight + 'px;'" :scroll-y="status !== 3" :scroll-with-animation="scrollAnimation"
				 :scroll-top="top" @scroll="scroll" @scrolltolower="scrolltolower">
					<view>
						<slot name="content"></slot>
						<template v-if="downLoading">
							<slot name="bottom"></slot>
						</template>
					</view>
				</scroll-view>
			</movable-view>
		</movable-area>
	</view>
</template>

<script>
	export default {
		props: {
			downLoading: {
				//控制下面下拉加载区的显示 , 默认关闭
				type: Boolean,
				default: false
			},
			scrollHeight: {
				//scroll显示区的高度(px)
				type: Number,
				default: 550
			},
			topHeight: {
				//下拉区的高度(px)
				type: Number,
				default: 60
			},
			interruptPosition: {
				//暂停区的高度(px)
				type: Number,
				default: 40
			},
			damping: {
				//回弹动画的速度 , 值越大越快
				type: Number,
				default: 50
			},
			scrollTop: {
				//即scroll-top属性 设置竖向滚动条位置
				type: Number,
				default: 0
			},
			scrollAnimation: {
				type: Boolean,
				default: false
			}
		},
		data() {
			return {
				isTouch: false, //触摸的标识
				y: 0, //控制y
				diff: 0, //定值topHeight-interruptPotion
				scrollmark: true,
				timeId: null,
				top: 0,
				status: 0,
				count: 0.01,
				scrollCount: 0.01,
				fingers: 0, //记录手指数
				clearFingers: null, //清除手指定时器
			};
		},
		changePositon() {

		},
		created() {
			this.y = -this.topHeight;
			this.diff = this.interruptPosition - this.topHeight;
		},
		methods: {
huahua committed
85 86 87 88 89 90 91
			
			scrollTopPostion(e) {
				setTimeout(() => {
					this.top = e
				}, 50);
			}, 
			
huahua committed
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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
			change(e) {
				//为3即是正在回弹状态
				if (this.status == 3 || !this.isTouch) return;

				if (e.detail.y >= this.diff || this.fingers > 1) {
					this.status = 2;
				} else if (e.detail.y < this.diff) {
					this.status = 1;
				}
			},
			touchstart(e) {
				this.fingers++;
				this.isTouch = true;
			},
			touchend(e) {
				clearTimeout(this.clearFingers);
				this.clearFingers = setTimeout(() => {
					this.fingers = 0;
					//重置手指数防止bug;
				}, 200);
				this.fingers--;
				if (this.status == 3 || this.fingers != 0) return; //防止多指下滑问题 , 匹配手指 只用到最后一次touchend;栈的思想
				this.isTouch = false;
				if (this.scrollmark) {
					if (this.status == 2) {
						this.status = 3;
						this.y = this.diff;
						this.$emit('interrupt', () => {
							this.y = -this.topHeight - 0.02;
							setTimeout(() => {
								this.$emit('finished');
								this.status = 0; //回弹过程中
								this.y = -this.topHeight; //结束之后,再次设置y坐标
							}, 200);
						});
					} else if (this.status == 1) {
						this.status = 3;
						this.y = -this.topHeight + this.count;
						//微小改变 否则无响应
						this.count = -this.count;
						setTimeout(() => {
							this.status = 0; //回弹过程中
						}, 200);
					}
				}
			},

			scroll(e) {
				//事件
				this.$emit('scroll', e)
				clearTimeout(this.timeId);
				this.scrollmark = false;
				this.timeId = setTimeout(() => {
					if (e.detail.scrollTop <= 15 || e.detail.scrollTop - e.detail.deltaY <= 0) {
						this.top = 0 + this.count;
						this.$emit('scrolltoupper', e)
						this.scrollCount = -this.scrollCount;
						this.scrollmark = true;
					}
				}, 100);
			},
			scrolltolower(e) {
				this.$emit('scrolltolower', e);
			}
		},
		watch: {
			status(value) {
				if (this.status == 2) this.$emit('pushToInterrupt');
				else if (this.status == 1) this.$emit('backToInterrupt');
			},
			scrollTop() {
huahua committed
163
				//console.log("进来");
huahua committed
164 165 166 167 168 169 170 171 172 173
				setTimeout(() => {
						   this.top =  this.scrollTop
				}, 80);
				//this.top = this.scrollTop;
			}
		}
	};
</script>

<style></style>