瀏覽代碼

fix: 轨迹定位问题

zhangjie 2 月之前
父節點
當前提交
ce2ab95b77
共有 1 個文件被更改,包括 1 次插入5 次删除
  1. 1 5
      src/features/mark/scoring/MarkBoardTrack.vue

+ 1 - 5
src/features/mark/scoring/MarkBoardTrack.vue

@@ -254,16 +254,12 @@ const rightBlur = () => {
   removeFocusTrack();
   removeFocusTrack();
 };
 };
 const positioning = (question: Question) => {
 const positioning = (question: Question) => {
-  // console.log(
-  //   "sliceImagesWithTrackListCopy:",
-  //   markStore.sliceImagesWithTrackListCopy
-  // );
   addFocusTrack(
   addFocusTrack(
     undefined,
     undefined,
     question.mainNumber,
     question.mainNumber,
     question.subNumber,
     question.subNumber,
     true,
     true,
-    markStore.sliceImagesWithTrackListCopy || []
+    markStore.sliceImagesWithTrackList || []
   );
   );
   activeRightMenuItem.value = null;
   activeRightMenuItem.value = null;
 };
 };