|
@@ -144,10 +144,10 @@
|
|
|
定位
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-if="!!question.questionName">
|
|
|
+ <div v-if="!!question.questionName" @click="positioning(question)">
|
|
|
{{ question.questionName }}
|
|
|
</div>
|
|
|
- <div v-else>
|
|
|
+ <div v-else @click="positioning(question)">
|
|
|
{{ question.title }} {{ question.mainNumber }}-{{
|
|
|
question.subNumber
|
|
|
}}
|
|
@@ -303,13 +303,11 @@ const rightBlur = () => {
|
|
|
removeFocusTrack();
|
|
|
};
|
|
|
const positioning = (question: Question) => {
|
|
|
- addFocusTrack(
|
|
|
- undefined,
|
|
|
- question.mainNumber,
|
|
|
- question.subNumber,
|
|
|
- true,
|
|
|
- sliceImagesWithTrackListCopy.value
|
|
|
- );
|
|
|
+ let list =
|
|
|
+ store.getMarkStatus === "正评" || store.getMarkStatus === "试评"
|
|
|
+ ? sliceImagesWithTrackListCopy.value
|
|
|
+ : undefined;
|
|
|
+ addFocusTrack(undefined, question.mainNumber, question.subNumber, true, list);
|
|
|
activeRightMenuItem.value = null;
|
|
|
};
|
|
|
watch(topPercent, () => {
|