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 @@