diff --git a/.env.development b/.env.development
index d25025e0..c476aba5 100644
--- a/.env.development
+++ b/.env.development
@@ -5,11 +5,11 @@ ENV = 'development'
# VITE_APP_BASE_API_Url = 'https://aits.jlbank.com.cn:7001'
+# VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7001'
+
# VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7002'
-# VITE_APP_BASE_API_Url = 'https://aitstest.jlbank.com.cn:7001'
-
# VITE_APP_BASE_API_Url = 'http://192.168.247.200'
# VITE_APP_BASE_API_Url = 'http://aitscdn.jlbank.com.cn:7001'
# VITE_APP_BASE_API_Url = 'http://192.168.108.129'
@@ -23,13 +23,13 @@ VITE_APP_BASE_API_Url = 'http://25.18.122.65:7001'
# DEV
# app入口
-#VITE_APP_BASE_API_Url = 'http://25.18.122.65:7001'
+# VITE_APP_BASE_API_Url = 'http://25.18.122.65:7001'
# VITE_APP_BASE_API_Url = 'http://25.16.122.91:9786'
# VITE_APP_BASE_API_Url = 'http://25.18.122.66:9786'
# h5专用地址x2
# dev
-# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001'
+#VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001'
# sit
-#VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786'
\ No newline at end of file
+# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.91:9786'
\ No newline at end of file
diff --git a/src/components/examination/question.vue b/src/components/examination/question.vue
index 7e4aa191..a9ab2d4a 100644
--- a/src/components/examination/question.vue
+++ b/src/components/examination/question.vue
@@ -202,8 +202,16 @@
console.log('声音加载完毕', e.duration);
// 计算原始时长
const originalTime = Math.ceil(e.duration) || 1;
- // 判断是否在118-123秒范围内
- const displayTime = originalTime >= 118 && originalTime <= 124 ? 120 : originalTime;
+ let displayTime
+ if(originalTime >= 118 && originalTime <= 122) {
+ // 判断是否在118-123秒范围内
+ displayTime = 120
+ } else if(originalTime >= 58 && originalTime <= 62) {
+ // 判断是否在58-62秒范围内
+ displayTime = 60
+ } else {
+ displayTime = originalTime
+ }
// 赋值显示
console.log('displayTime', displayTime);
voiceTime.value = displayTime + 's';
diff --git a/src/components/examination/touchBtn.vue b/src/components/examination/touchBtn.vue
index 57b9d65e..f20efff3 100644
--- a/src/components/examination/touchBtn.vue
+++ b/src/components/examination/touchBtn.vue
@@ -39,7 +39,6 @@
mode=""
@click="changeBtn"
>
-
-