Browse Source

移出log

liyanbo 4 tháng trước cách đây
mục cha
commit
33b6b7ae14
2 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 1
      src/components/PPT/PptView.vue
  2. 0 1
      src/components/blockly/MapGame.vue

+ 0 - 1
src/components/PPT/PptView.vue

@@ -134,7 +134,6 @@ const scrollToPage = (pageNum) => {
     const targetPosition = (pageNum - 1) * pageHeight.value;
     // 设置滚动位置
     pptContainer.value.scrollTop = targetPosition;
-    console.log(`滚动到第${pageNum}页,位置: ${targetPosition}`);
   }
 }
 

+ 0 - 1
src/components/blockly/MapGame.vue

@@ -835,7 +835,6 @@ window.moveForward = async function(stepCount = 1) {
       case CONFIG.GAME.DIRECTIONS.LEFT: newX--; break;
     }
 
-    console.log(`第${i}步`,newX, newY);
     await moveStep(newX, newY);
   }
 };