|
@@ -203,6 +203,11 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
+ let verifyMoveBlock = document.querySelector('.verify-move-block');
|
|
|
+ verifyMoveBlock.addEventListener('touchmove', function (event) {
|
|
|
+ // 阻止默认的滑动行为
|
|
|
+ event.preventDefault();
|
|
|
+ });
|
|
|
// 禁止拖拽
|
|
|
this.$el.onselectstart = function () {
|
|
|
return false;
|