mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
[bugfix] Swipe: unable to scroll page when opened (#3056)
This commit is contained in:
parent
49494c9021
commit
6101b14c76
@ -7,11 +7,6 @@
|
||||
<p align="center">
|
||||
<img src="https://img.shields.io/npm/v/vant.svg?style=flat-square" alt="npm version" />
|
||||
<img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg?style=flat-square" alt="Coverage Status" />
|
||||
<img src="https://img.shields.io/npm/l/vant.svg?style=flat-square" alt="license" />
|
||||
<img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" />
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" />
|
||||
<img src="https://img.shields.io/npm/dt/vant.svg?style=flat-square" alt="downloads" />
|
||||
<img src="https://img.shields.io/npm/dm/vant.svg?style=flat-square" alt="downloads" />
|
||||
|
@ -6,11 +6,6 @@
|
||||
<p align="center">
|
||||
<img src="https://img.shields.io/npm/v/vant.svg?style=flat-square" alt="npm version" />
|
||||
<img src="https://img.shields.io/codecov/c/github/youzan/vant/dev.svg?style=flat-square" alt="Coverage Status" />
|
||||
<img src="https://img.shields.io/npm/l/vant.svg?style=flat-square" alt="license" />
|
||||
<img src="https://isitmaintained.com/badge/open/youzan/vant.svg" alt="issue" />
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://travis-ci.org/youzan/vant.svg?branch=master" alt="Build Status" />
|
||||
<img src="https://img.shields.io/npm/dt/vant.svg?style=flat-square" alt="downloads" />
|
||||
<img src="https://img.shields.io/npm/dm/vant.svg?style=flat-square" alt="downloads" />
|
||||
|
@ -16,8 +16,7 @@ module.exports = {
|
||||
'!**/demo/**',
|
||||
'!**/locale/lang/**',
|
||||
'!**/sku/**',
|
||||
'!**/waterfall/**',
|
||||
'!**/icon/config/**'
|
||||
'!**/waterfall/**'
|
||||
],
|
||||
collectCoverage: true,
|
||||
coverageReporters: ['html', 'lcov', 'text-summary'],
|
||||
|
@ -72,11 +72,8 @@ export default sfc({
|
||||
}
|
||||
|
||||
this.dragging = true;
|
||||
this.startOffset = this.offset;
|
||||
this.touchStart(event);
|
||||
|
||||
if (this.opened) {
|
||||
this.startX -= this.offset;
|
||||
}
|
||||
},
|
||||
|
||||
onDrag(event) {
|
||||
@ -88,7 +85,7 @@ export default sfc({
|
||||
|
||||
if (this.direction === 'horizontal') {
|
||||
event.preventDefault();
|
||||
this.swipeMove(this.deltaX);
|
||||
this.swipeMove(this.deltaX + this.startOffset);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user