|
@@ -78,7 +78,7 @@
|
|
v-show="conList.length"
|
|
v-show="conList.length"
|
|
v-for="(i, index) in conList"
|
|
v-for="(i, index) in conList"
|
|
:key="index"
|
|
:key="index"
|
|
- @touchmove.stop=""
|
|
|
|
|
|
+ @touchmove.stop="handleTouchMove"
|
|
>
|
|
>
|
|
<div class="observe_content" @click.stop="recordContinue(i.rid)">
|
|
<div class="observe_content" @click.stop="recordContinue(i.rid)">
|
|
<div class="observe_contentTit">
|
|
<div class="observe_contentTit">
|
|
@@ -188,6 +188,9 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ handleTouchMove(event) {
|
|
|
|
+ event.preventDefault()
|
|
|
|
+ },
|
|
touchStart(e) {
|
|
touchStart(e) {
|
|
this.timeOutEvent = setTimeout(() => {
|
|
this.timeOutEvent = setTimeout(() => {
|
|
this.timeOutEvent = 0
|
|
this.timeOutEvent = 0
|