|
@@ -11,7 +11,12 @@
|
|
|
<div class="w-80% h-60% my-30px flex-center flex-col">
|
|
|
<template v-if="showTopics">
|
|
|
<div v-if="isMainWin" class="flex-center flex-col text-100px text-[#0F308C]" @click="handlePlay">
|
|
|
- {{ TopicsVal[currentIndex].correct }}
|
|
|
+ <!-- {{ TopicsVal[currentIndex].correct }}-->
|
|
|
+ <el-image
|
|
|
+ :src="`/static/image/cognitiveAbility/SpeechTraining/Visual/${TopicsVal[currentIndex].correct}.png`"
|
|
|
+ fit="contain"
|
|
|
+ class="w-[160px] h-[160px] cursor-pointer mt-30px"
|
|
|
+ />
|
|
|
<!-- <div class="text-50px">提示</div>-->
|
|
|
</div>
|
|
|
<!-- <el-image-->
|
|
@@ -23,11 +28,14 @@
|
|
|
<!-- />-->
|
|
|
<div class="w-full flex flex-row justify-around">
|
|
|
<div v-for="(item, index) in TopicsVal[currentIndex].choices" :key="index" class="flex flex-col items-center">
|
|
|
- <div class="w-180px h-180px flex-center cursor-pointer" @click="handleItemClick(item, index)">
|
|
|
+ <div class="w-200px h-180px flex-center cursor-pointer" @click="handleItemClick(item, index)">
|
|
|
+ <!-- <div class="w-[380px] h-[120px] cursor-pointer text-center mt-30px text-65px text-[#0F308C]">-->
|
|
|
+ <!-- {{ item }}-->
|
|
|
+ <!-- </div>-->
|
|
|
<el-image
|
|
|
:src="`/static/image/cognitiveAbility/SpeechTraining/Visual/${item}.png`"
|
|
|
fit="contain"
|
|
|
- class="w-[180px] h-[180px] cursor-pointer mt-30px rounded-8px"
|
|
|
+ class="w-[120px] h-[120px] cursor-pointer mt-30px"
|
|
|
/>
|
|
|
</div>
|
|
|
<el-image
|
|
@@ -74,7 +82,7 @@
|
|
|
import { formatSeconds, isJSON } from '@/utils'
|
|
|
|
|
|
defineOptions({
|
|
|
- name: 'CATAuditoryTrainingRecognition',
|
|
|
+ name: 'diagramMap',
|
|
|
inheritAttrs: false
|
|
|
})
|
|
|
|
|
@@ -159,13 +167,13 @@ async function exec() {
|
|
|
localStorage.setItem('two-win-auditory-sentence-img-matching-init-data', JSON.stringify(TopicsVal.value))
|
|
|
setTimeout(() => {
|
|
|
showNextBtn.value = true
|
|
|
- }, 5200)
|
|
|
+ }, 200)
|
|
|
} else {
|
|
|
taskBeginTime = Date.now()
|
|
|
- VoiceImpRef.value.videoPlay(
|
|
|
- 'Speech-Auditory',
|
|
|
- 'static/voice/cognitiveAbility/SpeechTraining/Auditory/SentenceImgMatching/1.mp3'
|
|
|
- )
|
|
|
+ // VoiceImpRef.value.videoPlay(
|
|
|
+ // 'Speech-Auditory',
|
|
|
+ // 'static/voice/cognitiveAbility/SpeechTraining/Auditory/SentenceImgMatching/1.mp3'
|
|
|
+ // )
|
|
|
}
|
|
|
}
|
|
|
|