Browse Source

fix: 轨迹定位问题

zhangjie 2 tháng trước cách đây
mục cha
commit
ce2ab95b77
1 tập tin đã thay đổi với 1 bổ sung5 xóa
  1. 1 5
      src/features/mark/scoring/MarkBoardTrack.vue

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

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