|
|
@@ -87,11 +87,11 @@
|
|
|
AI讲题
|
|
|
</span>
|
|
|
<span class="action_btn" :class="{'analysis_btn':item.operationType=='analysis'}" @click="questionOperationTrigger(item,'analysis')">
|
|
|
- <img :src="answerIcon" alt="">
|
|
|
+ <img :src="item.operationType=='analysis' ? answerIconLight :answerIcon" alt="">
|
|
|
解析答案
|
|
|
</span>
|
|
|
<span class="action_btn" :class="{'answer_detail_btn':item.operationType=='stuAnswerDetail'}" @click="questionOperationTrigger(item,'stuAnswerDetail')">
|
|
|
- <img :src="deteaiIcon" alt="">
|
|
|
+ <img :src="item.operationType=='stuAnswerDetail' ? deteaiIconLight :deteaiIcon" alt="">
|
|
|
作答详情
|
|
|
</span>
|
|
|
</div>
|
|
|
@@ -111,9 +111,13 @@
|
|
|
import TopBackNav from '../../components/TopBackNav.vue';
|
|
|
|
|
|
import aiIcon from '@/assets/knowledgeGraph/aiIcon.png'
|
|
|
-import answerIcon from '@/assets/practiceResult/broken_line.png'
|
|
|
+import answerIcon from '@/assets/practiceResult/broken_line.svg'
|
|
|
import deteaiIcon from '@/assets/practiceResult/todo_list.png'
|
|
|
|
|
|
+import answerIconLight from '@/assets/practiceResult/broken_line_light.png'
|
|
|
+import deteaiIconLight from '@/assets/practiceResult/todo_list_light.svg'
|
|
|
+
|
|
|
+
|
|
|
import AnswerAnalysis from './answerAnalysis.vue'
|
|
|
import studentAnswerDetail from './studentAnswerDetail.vue';
|
|
|
|
|
|
@@ -129,6 +133,8 @@ export default ({
|
|
|
aiIcon:aiIcon,
|
|
|
answerIcon:answerIcon,
|
|
|
deteaiIcon:deteaiIcon,
|
|
|
+ answerIconLight:answerIconLight,
|
|
|
+ deteaiIconLight:deteaiIconLight,
|
|
|
questionList:[
|
|
|
{
|
|
|
id:'1',
|