提交 ba960883 编写于 作者: DCloud-yyl's avatar DCloud-yyl

修复语法检测报错

上级 cf5bd8f0
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
if(this.bAnimation){//容错处理 if(this.bAnimation){//容错处理
return; return;
} }
let top:number = this.scrollNode?.getAttribute('scrollTop') as number let top:number = this.scrollNode?.scrollTop??0;
let p = e.touches[0]; let p = e.touches[0];
this.lastY2 = this.lastY; this.lastY2 = this.lastY;
this.lastY = p.screenY; this.lastY = p.screenY;
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
if(this.bAnimation){//容错处理 if(this.bAnimation){//容错处理
return; return;
} }
let top:number = this.scrollNode?.getAttribute('scrollTop') as number let top:number = this.scrollNode?.scrollTop??0;
let bHide = (this.halfHeight-this.halfOffset)<this.halfHeight/4; let bHide = (this.halfHeight-this.halfOffset)<this.halfHeight/4;
if(bHide){ if(bHide){
bHide = this.lastY2>0&&this.lastY2<=this.lastY; bHide = this.lastY2>0&&this.lastY2<=this.lastY;
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
this.halfNode = this.$refs['halfScreen'] as Element; this.halfNode = this.$refs['halfScreen'] as Element;
this.halfHeight = this.halfNode!.getBoundingClientRect().height; this.halfHeight = this.halfNode!.getBoundingClientRect().height;
this.scrollNode = this.$refs['halfScroll'] as Element; this.scrollNode = this.$refs['halfScroll'] as Element;
this.totalHeight = uni.getWindowInfo().windowHeight; this.totalHeight = uni.getWindowInfo().windowHeight;
this.halfNode?.style?.setProperty('top', this.totalHeight.toString()); this.halfNode?.style?.setProperty('top', this.totalHeight.toString());
}, },
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册