aamin 1 year ago
parent
commit
eae113ad82
2 changed files with 978 additions and 1693 deletions
  1. 1 2
      src/views/HomeView(点击交互).vue
  2. 977 1691
      src/views/HomeView.vue

+ 1 - 2
src/views/HomeView(点击交互).vue

@@ -55,8 +55,7 @@ const isShowOperationTip = ref(true)
 const touchEnd = (event) => {
   let currentY = event.changedTouches[0].pageY
   let ty = currentY - lastY.value
-  if (ty > 0 && curPageIndex.value == 1) {
-    console.log("向下")
+  if (ty > 0 && curPageIndex.value == 1 && !isShowHotspotDetail1.value && !isShowHotspotDetail3.value && !isShowPaintingDesc.value && ! isShowAuthorDesc.value) {
     isShowOperationTip.value = true
     curPageIndex.value = 0
   } else if (ty < 0 && curPageIndex.value == 0) {

File diff suppressed because it is too large
+ 977 - 1691
src/views/HomeView.vue