From a757b34f6f97fb735f128d2c54a9ba5a8d7051a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Wed, 14 Jan 2026 17:25:45 +0800 Subject: [PATCH] =?UTF-8?q?LBA202505130001=5F=E5=85=B3=E4=BA=8E=E5=90=89?= =?UTF-8?q?=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI=E6=99=BA?= =?UTF-8?q?=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84=E9=9C=80?= =?UTF-8?q?=E6=B1=82=5F=E6=B7=BB=E5=8A=A0=E5=9B=9E=E7=AD=94=E6=96=B9?= =?UTF-8?q?=E5=BC=8F=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 4 ++-- src/components/examination/subject.vue | 9 +++++++++ src/pages/course/components/talkingItem.vue | 5 +++++ src/pages/course/study.vue | 1 + 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/.env.development.yh b/.env.development.yh index e5b3101e..33d4540f 100644 --- a/.env.development.yh +++ b/.env.development.yh @@ -4,8 +4,8 @@ ENV = 'development.yh' # VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001' -VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786' -# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.78:9786' +# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786' +VITE_APP_BASE_H5_API_Url = 'http://25.18.122.78:9786' # VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002' # VITE_APP_BASE_H5_API_Url_TRAEXAM = 'http://25.64.32.154:9604' # VITE_APP_BASE_H5_API_Url_TRAPRACTICE = 'http://25.64.32.156:9603' diff --git a/src/components/examination/subject.vue b/src/components/examination/subject.vue index 4ccaf7c6..e7912540 100644 --- a/src/components/examination/subject.vue +++ b/src/components/examination/subject.vue @@ -6,6 +6,9 @@ {{ item.tgtGrade }}分 + + {{ item.answerMethod === '02'? '仅文字回答':item.answerMethod === '03'? '仅语音回答':'不限制回答方式' }} + @@ -518,6 +521,12 @@ color: #333333; text-align: left; } + .answerMethod{ + font-size: 22rpx; + font-family: ArialMT; + color: #999; + text-align: left; + } .right { display: flex; diff --git a/src/pages/course/components/talkingItem.vue b/src/pages/course/components/talkingItem.vue index aad428d1..63115180 100644 --- a/src/pages/course/components/talkingItem.vue +++ b/src/pages/course/components/talkingItem.vue @@ -282,6 +282,10 @@ default: '', type: String }, + answerMethod: { + default: '01', + type: String + }, isLast: { default: false, type: Boolean @@ -332,6 +336,7 @@ ...dataInfo.value, ...(dataInfo.value?.traQnsInfoVo || {}), my_answer: dataInfo.value?.traQnsInfoVo?.anserResult || '', + answerMethod: props.answerMethod, ...(props.type === 5?{ "qnsTyp": "ES", my_answer: dataInfo.value, diff --git a/src/pages/course/study.vue b/src/pages/course/study.vue index 4c87f03b..dcdcc845 100644 --- a/src/pages/course/study.vue +++ b/src/pages/course/study.vue @@ -69,6 +69,7 @@ :voiceRate="chooseRate" :lastQuestionInfo="lastTalkingInfo" :teacherInfo="choiceTeacherInfo" + :answerMethod="answerMethod" @changePlay="changePlayItemId" @nextQuestion="nextQuestionSuccess" @withdraw="withdrawNow"