|
@@ -239,9 +239,11 @@ export default {
|
|
|
});
|
|
|
|
|
|
window.addEventListener('touchmove', function (e) {
|
|
|
+ e.stopPropagation();
|
|
|
_this.move(e);
|
|
|
});
|
|
|
window.addEventListener('mousemove', function (e) {
|
|
|
+ e.stopPropagation();
|
|
|
_this.move(e);
|
|
|
});
|
|
|
|
|
@@ -256,6 +258,7 @@ export default {
|
|
|
|
|
|
// 鼠标按下
|
|
|
start: function (e) {
|
|
|
+ e.stopPropagation();
|
|
|
e = e || window.event;
|
|
|
let x = null;
|
|
|
if (!e.touches) {
|