From 76047e43711de9d3ed9605e964c197183a47ea6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Fri, 16 Jan 2026 15:17:22 +0800 Subject: [PATCH 01/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix=EF=BC=9A=E8=AF=BE=E7=A8=8B=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E8=AF=A6=E6=83=85=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=88=91?= =?UTF-8?q?=E7=9A=84=E7=AD=94=E6=A1=88=E9=97=AE=E9=A2=98=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 2 +- src/components/examination/subject.vue | 12 ++++++------ src/pages/courseRecord/components/talkingItem.vue | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.env.development.yh b/.env.development.yh index 33d4540f..e1481a80 100644 --- a/.env.development.yh +++ b/.env.development.yh @@ -7,7 +7,7 @@ ENV = 'development.yh' # 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_TRAEXAM = 'http://25.64.32.154:9604' # VITE_APP_BASE_H5_API_Url_TRAPRACTICE = 'http://25.64.32.156:9603' # VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.32.154:9601' # VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.32.158:9601' diff --git a/src/components/examination/subject.vue b/src/components/examination/subject.vue index 76551787..2f6ff7e7 100644 --- a/src/components/examination/subject.vue +++ b/src/components/examination/subject.vue @@ -2,7 +2,7 @@ - {{ subject_type_text }} + {{ subject_type_text }} {{ item.tgtGrade }}分 @@ -76,7 +76,7 @@ class="option_div_button" v-if=" qnsTyp === 'MU' && - ['practice', 'study', 'study_answer', 'pk_in', 'mistake_in'].includes(props.mode) && + ['practice', 'study', 'study_answer', 'study_record', 'pk_in', 'mistake_in'].includes(props.mode) && !props.isPreview && clearResult " @@ -97,7 +97,7 @@ class="analysis_div" v-if=" !clearResult && - ['study', 'study_answer', 'mistake', 'settlement', 'practice', 'mistake_in', 'practice_record', 'pk_in'].includes(props.mode) + ['study', 'study_answer', 'study_record', 'mistake', 'settlement', 'practice', 'mistake_in', 'practice_record', 'pk_in'].includes(props.mode) " > @@ -172,7 +172,7 @@ // 学习: study // 考试结算页 settlement // 练习记录页 practice_record, 'practice_record' - return ['examination', 'practice', 'mistake', 'mistake_in', 'study', 'study_answer', 'settlement', 'practice_record', 'pk_in'].includes( + return ['examination', 'practice', 'mistake', 'mistake_in', 'study', 'study_answer', 'study_record', 'settlement', 'practice_record', 'pk_in'].includes( value ); } @@ -319,7 +319,7 @@ if (item_answer.value.includes(analysisVo.itemId)) { item_answer.value = item_answer.value.filter((id) => id !== analysisVo.itemId); modelValue.value = item_answer.value; - if (!['study','study_answer'].includes(props.mode)) { + if (!['study','study_answer', 'study_record'].includes(props.mode)) { muCheckbox('choose'); } } else if (props.item.qnsTyp === 'SN') { @@ -333,7 +333,7 @@ // 多选直接插入 item_answer.value.push(analysisVo.itemId); modelValue.value = item_answer.value; - if (!['study','study_answer'].includes(props.mode)) { + if (!['study','study_answer', 'study_record'].includes(props.mode)) { muCheckbox('choose'); } } else if (props.item.qnsTyp === 'JD') { diff --git a/src/pages/courseRecord/components/talkingItem.vue b/src/pages/courseRecord/components/talkingItem.vue index 319016f6..fa685326 100644 --- a/src/pages/courseRecord/components/talkingItem.vue +++ b/src/pages/courseRecord/components/talkingItem.vue @@ -257,7 +257,7 @@ }) return _sum }) - const mode = ref('study') // 考试 examination 练习practice 学习study + const mode = ref('study_record') // 考试 examination 练习practice 学习study const showWithdraw = computed(() => { let _isMe = unref(lastQuestionInfo).qstLogId === unref(dataInfo).qstLogId From 16fa06511e5d2e8db369f63f5db9d55c5fcdeb8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Fri, 16 Jan 2026 16:23:15 +0800 Subject: [PATCH 02/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix:=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 4 ++-- src/components/examination/subject.vue | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.env.development.yh b/.env.development.yh index e1481a80..abc8dc37 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 2f6ff7e7..7821f813 100644 --- a/src/components/examination/subject.vue +++ b/src/components/examination/subject.vue @@ -474,6 +474,7 @@ margin-top: 28rpx; } .reference_answer { + white-space: pre-line; .reference_answer_title { font-weight: 700; font-size: 30rpx; From f60480f870bfd82b684a0272af6540b44f945c9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Fri, 16 Jan 2026 17:23:15 +0800 Subject: [PATCH 03/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix=EF=BC=9A=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 2 +- src/components/examination/subject.vue | 6 +++--- src/pages/courseRecord/components/esQuestion.vue | 7 +++++-- src/pages/courseRecord/components/talkingItem.vue | 10 +++++++--- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.env.development.yh b/.env.development.yh index abc8dc37..e5b3101e 100644 --- a/.env.development.yh +++ b/.env.development.yh @@ -7,7 +7,7 @@ ENV = 'development.yh' 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_TRAEXAM = 'http://25.64.32.154:9604' # VITE_APP_BASE_H5_API_Url_TRAPRACTICE = 'http://25.64.32.156:9603' # VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.32.154:9601' # VITE_APP_BASE_H5_API_Url_TRAAPP = 'http://25.64.32.158:9601' diff --git a/src/components/examination/subject.vue b/src/components/examination/subject.vue index 7821f813..f0903713 100644 --- a/src/components/examination/subject.vue +++ b/src/components/examination/subject.vue @@ -44,12 +44,12 @@ - + {{ subject_data.qnsContent }} - + @@ -119,6 +120,8 @@ font-size: 30rpx; margin-top: 20rpx; margin-bottom: 20rpx; + font-weight: bold; + color: #333333; } .talking-info { diff --git a/src/pages/courseRecord/components/talkingItem.vue b/src/pages/courseRecord/components/talkingItem.vue index fa685326..5ee1acac 100644 --- a/src/pages/courseRecord/components/talkingItem.vue +++ b/src/pages/courseRecord/components/talkingItem.vue @@ -31,10 +31,14 @@ {{ showContent }} - + + + + - From fe0c406955a31ec50db208309ff6ea71ab54dae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Fri, 16 Jan 2026 17:32:01 +0800 Subject: [PATCH 04/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix:=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 4 ++-- src/pages/courseRecord/components/talkingItem.vue | 5 ++--- 2 files changed, 4 insertions(+), 5 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/pages/courseRecord/components/talkingItem.vue b/src/pages/courseRecord/components/talkingItem.vue index 5ee1acac..31cf0fd0 100644 --- a/src/pages/courseRecord/components/talkingItem.vue +++ b/src/pages/courseRecord/components/talkingItem.vue @@ -33,12 +33,11 @@ - - + mode="study" :clearResult="type === 4" @subject_click="subject_click" /> From 3cef854bc65db45f4bffbecb8714c482f0068473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Fri, 16 Jan 2026 17:51:17 +0800 Subject: [PATCH 05/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix=EF=BC=9A=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development.yh | 4 ++-- src/pages/courseRecord/components/esQuestionAnswer.vue | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.env.development.yh b/.env.development.yh index 33d4540f..e5b3101e 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/pages/courseRecord/components/esQuestionAnswer.vue b/src/pages/courseRecord/components/esQuestionAnswer.vue index c5de046d..e0029ea1 100644 --- a/src/pages/courseRecord/components/esQuestionAnswer.vue +++ b/src/pages/courseRecord/components/esQuestionAnswer.vue @@ -49,6 +49,7 @@ import { onUnload } from '@dcloudio/uni-app'; + import { getToken } from '@/common/common.js' const props = defineProps({ dataInfo: { default: () => ({ @@ -149,7 +150,7 @@ talkVoiceObj.value.src = ''; if (unref(dataInfo).ossAddr) { setTimeout(() => { - talkVoiceObj.value.src = unref(dataInfo).ossAddr; + talkVoiceObj.value.src = unref(dataInfo).ossAddr + '?tk=' + getToken(); talkVoiceObj.value.play(); isPlaying.value = true; }, 100); From f03c71b7faad34ba112e5d217f281da1d3941225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Mon, 19 Jan 2026 08:30:28 +0800 Subject: [PATCH 06/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix:=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/courseRecord/components/esQuestionAnswer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/courseRecord/components/esQuestionAnswer.vue b/src/pages/courseRecord/components/esQuestionAnswer.vue index e0029ea1..1a5dcf99 100644 --- a/src/pages/courseRecord/components/esQuestionAnswer.vue +++ b/src/pages/courseRecord/components/esQuestionAnswer.vue @@ -196,7 +196,7 @@ } }); if (unref(dataInfo).intrctWay === '02') { - itemVoice.value = unref(dataInfo).ossAddr; + itemVoice.value = unref(dataInfo).ossAddr + '?tk=' + getToken(); talkVoiceObj.value.src = itemVoice.value; setTimeout(() => { setVoiceTime(0); From 846bc09865158cefc61e54153313776a17561c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Mon, 19 Jan 2026 10:57:12 +0800 Subject: [PATCH 07/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix=EF=BC=9A=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/image-preview/image-preview.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/image-preview/image-preview.vue b/src/components/image-preview/image-preview.vue index 62cc3ded..1b9fc6c2 100644 --- a/src/components/image-preview/image-preview.vue +++ b/src/components/image-preview/image-preview.vue @@ -84,7 +84,7 @@ imgId: { handler(newval, oldval) { if (newval.indexOf('/') === 0) { - this.imgUrlShow = this.base_url + newval; + this.imgUrlShow = this.base_url + newval + '?tk=' + this.token; return; } if (newval.indexOf('http') === 0) { From f887bf181c6ee2caf4fb0b3d32500f34d6ff98d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Mon, 19 Jan 2026 10:57:42 +0800 Subject: [PATCH 08/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix:=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/image-preview/image-preview.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/image-preview/image-preview.vue b/src/components/image-preview/image-preview.vue index 1b9fc6c2..719abab3 100644 --- a/src/components/image-preview/image-preview.vue +++ b/src/components/image-preview/image-preview.vue @@ -88,7 +88,7 @@ return; } if (newval.indexOf('http') === 0) { - this.imgUrlShow = newval; + this.imgUrlShow = newval + '?tk=' + this.token; return; } if (newval && this.watching) { From aeca71bcbe308ede37ebb917c6a0816000cce244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Mon, 19 Jan 2026 11:38:07 +0800 Subject: [PATCH 09/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix=EF=BC=9A=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/courseRecord/components/esQuestion.vue | 2 +- .../courseRecord/components/esQuestionAnswer.vue | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/pages/courseRecord/components/esQuestion.vue b/src/pages/courseRecord/components/esQuestion.vue index e684cd29..7020607f 100644 --- a/src/pages/courseRecord/components/esQuestion.vue +++ b/src/pages/courseRecord/components/esQuestion.vue @@ -6,7 +6,7 @@ 你的答案: - diff --git a/src/pages/courseRecord/components/esQuestionAnswer.vue b/src/pages/courseRecord/components/esQuestionAnswer.vue index 1a5dcf99..ddb0f118 100644 --- a/src/pages/courseRecord/components/esQuestionAnswer.vue +++ b/src/pages/courseRecord/components/esQuestionAnswer.vue @@ -136,10 +136,11 @@ emit('buutton_click', type, props.dataInfo); }; const pauseVoice = () => { + console.log('pauseVoice') if (!talkVoiceObj.value) return; talkVoiceObj.value.pause(); isPlaying.value = false; - emit('changePlay', ''); + // emit('changePlay', ''); }; const playVoice = () => { emit('changePlay', unref(dataInfo)?.ossAddr); @@ -161,22 +162,26 @@ talkVoiceObj.value = uni.createInnerAudioContext(); let prevTime = -1; talkVoiceObj.value.onEnded(() => { + console.log('onEnded') emit('changePlay', ''); prevTime = -1; talkVoiceObj.value.src = ''; }); talkVoiceObj.value.onStop(() => { + console.log('onEnded') emit('changePlay', ''); prevTime = -1; talkVoiceObj.value.src = ''; }); talkVoiceObj.value.onPause(() => { + console.log('onEnded') prevTime = talkVoiceObj.value.currentTime; emit('changePlay', ''); }); talkVoiceObj.value.onError(() => { - prevTime = -1; - emit('changePlay', ''); + console.log('onError') + // prevTime = -1; + // emit('changePlay', ''); }); talkVoiceObj.value.onPlay(() => { prevTime = talkVoiceObj.value.currentTime; From c1e0fe2f01aeb7a8b0b55e1a2814e01bfdee83c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Mon, 19 Jan 2026 11:45:26 +0800 Subject: [PATCH 10/10] =?UTF-8?q?JLBA202505130001=5F=E5=85=B3=E4=BA=8E?= =?UTF-8?q?=E5=90=89=E6=9E=97=E9=93=B6=E8=A1=8C=E6=96=B0=E5=BB=BAAI?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=9F=B9=E8=AE=AD=E7=B3=BB=E7=BB=9F=E7=9A=84?= =?UTF-8?q?=E9=9C=80=E6=B1=82=5Ffix:=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/courseRecord/components/esQuestion.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/courseRecord/components/esQuestion.vue b/src/pages/courseRecord/components/esQuestion.vue index 7020607f..e684cd29 100644 --- a/src/pages/courseRecord/components/esQuestion.vue +++ b/src/pages/courseRecord/components/esQuestion.vue @@ -6,7 +6,7 @@ 你的答案: -