This commit is contained in:
杨航
2025-12-09 09:19:10 +08:00
parent 78ff13ea26
commit 86dc8bbe78
2 changed files with 27 additions and 15 deletions
+3 -3
View File
@@ -2,13 +2,13 @@
ENV = 'development.yh'
# 'development.yh'
# VITE_APP_BASE_H5_API_Url = 'http://25.18.122.65:7001'
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.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'
# 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'
# VITE_APP_BASE_H5_API_Url_TRASTUDY = 'http://25.64.32.154:9602'
+24 -12
View File
@@ -69,7 +69,12 @@
<!-- sceneDesc -->
{{ detailInfo.sceneDesc }}
</view>
<view class="talking-box">
<view class="talking-box" v-if="detailInfo.traInterTyp !== '01'">
<view class="tip-text">
-请点击下方按钮开始{{ detailInfo.traInterTypDesc }}
</view>
</view>
<view class="talking-box" v-else>
<TalkingItem
v-for="(item, index) in talkingList"
:talkingType="item.type"
@@ -313,20 +318,22 @@
if (watchFlag.value === 1 || showModelComfirm.value) return;
if (reconcatNum.value === 5) {
common.msg('系统网络异常,请稍后再试!');
common.redirectTo(`/pages/index/dialog`);
return;
}
showModelComfirm.value = true;
common
.show('提示信息', '网络环境不稳定,请重试!', false, '', '确认')
.then((res) => {
overNow(() => {
reconcatNum.value += 1;
common.redirectTo(`/pages/index/dialog`);
});
})
.finally(() => {
showModelComfirm.value = false;
});
reconcatNum.value += 1;
// common
// .show('提示信息', '网络环境不稳定,请重试!', false, '', '确认')
// .then((res) => {
// overNow(() => {
// reconcatNum.value += 1;
// common.redirectTo(`/pages/index/dialog`);
// });
// })
// .finally(() => {
// showModelComfirm.value = false;
// });
});
unref(SocketObj).on('message', (res) => {
const { rtnCode, body, commond } = JSON.parse(res.data);
@@ -874,6 +881,11 @@
.talking-box {
padding-top: 24rpx;
.tip-text{
color: #7295cb;
text-align: center;
font-size: 29rpx;
}
}
}