From 4c2859405ed68286a4c6b951b5cd62ba47d3f575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E5=B2=A9?= Date: Mon, 1 Sep 2025 16:45:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AF=BE=E7=A8=8B=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/components/examination/question.vue | 8 ++++ src/components/examination/touchBtn.vue | 46 ++++++++++--------- src/pages/courseDetail/index.vue | 14 ++++-- src/pages/examination/components/feedback.vue | 6 +-- src/pages/examination/index.vue | 7 ++- src/pages/index/dialog.vue | 3 +- src/pages/practice/index.vue | 1 - 8 files changed, 54 insertions(+), 33 deletions(-) diff --git a/.env.development b/.env.development index fa823236..94cef876 100644 --- a/.env.development +++ b/.env.development @@ -23,7 +23,7 @@ VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7001' # VITE_APP_BASE_H5_API_Url = 'http://25.64.16.130:9602' # 线上 -VITE_APP_BASE_H5_API_Url = 'https://aitstest.jlbank.com.cn:7002' +#VITE_APP_BASE_H5_API_Url = 'https://aitstest.jlbank.com.cn:7002' VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001' #VITE_APP_BASE_H5_API_Url = 'http://25.18.122.116:7001' diff --git a/src/components/examination/question.vue b/src/components/examination/question.vue index 74b0ae3c..c64fc6c8 100644 --- a/src/components/examination/question.vue +++ b/src/components/examination/question.vue @@ -126,6 +126,14 @@ const audioStore = useAudioStore(); const { dataInfo } = toRefs(props); const status = computed(() => props.status); + watch( + () => props.status, + (val) => { + if (val === '') { + textShow.value = false; + } + } + ); const emit = defineEmits(['changePlay', 'buutton_click']); // 中间显示的文字 diff --git a/src/components/examination/touchBtn.vue b/src/components/examination/touchBtn.vue index 653c670b..e5ed1e6a 100644 --- a/src/components/examination/touchBtn.vue +++ b/src/components/examination/touchBtn.vue @@ -1,11 +1,10 @@