|
@@ -156,14 +156,6 @@
|
|
|
>
|
|
|
<img :src="rightPanelMode === 'homework' ? homeworkActiveIcon : homeworkIcon" alt="作业">
|
|
|
</button>
|
|
|
- <button
|
|
|
- class="side-nav-btn"
|
|
|
- :class="{ active: rightPanelMode === 'dialogue' }"
|
|
|
- @click="switchToDialogue"
|
|
|
- title="对话"
|
|
|
- >
|
|
|
- <img :src="rightPanelMode === 'dialogue' ? dialogueActiveIcon : dialogueIcon" alt="对话">
|
|
|
- </button>
|
|
|
<button
|
|
|
v-if="isChoiceQuestion"
|
|
|
class="side-nav-btn"
|
|
@@ -173,6 +165,14 @@
|
|
|
>
|
|
|
<img :src="rightPanelMode === 'choice' ? choiceActiveIcon : choiceIcon" alt="统计">
|
|
|
</button>
|
|
|
+ <button
|
|
|
+ class="side-nav-btn"
|
|
|
+ :class="{ active: rightPanelMode === 'dialogue' }"
|
|
|
+ @click="switchToDialogue"
|
|
|
+ title="对话"
|
|
|
+ >
|
|
|
+ <img :src="rightPanelMode === 'dialogue' ? dialogueActiveIcon : dialogueIcon" alt="对话">
|
|
|
+ </button>
|
|
|
</div>
|
|
|
|
|
|
|