Commit 5fca51ef by 严久程

axb隐藏改为可配置

parent 61db143c
...@@ -42,7 +42,7 @@ ext { ...@@ -42,7 +42,7 @@ ext {
ydlPublishVersion = [ ydlPublishVersion = [
// -------------- 业务模块 -------------- // -------------- 业务模块 --------------
//第三步 若干 //第三步 若干
"m-confide" : "0.0.48.36", "m-confide" : "0.0.48.44",
"m-consultant" : "0.0.59.15", "m-consultant" : "0.0.59.15",
"m-fm" : "0.0.29.3", "m-fm" : "0.0.29.3",
"m-user" : "0.0.60.3", "m-user" : "0.0.60.3",
...@@ -75,7 +75,7 @@ ext { ...@@ -75,7 +75,7 @@ ext {
"ydl-webview" : "0.0.38.29", "ydl-webview" : "0.0.38.29",
"ydl-media" : "0.0.20", "ydl-media" : "0.0.20",
"ydl-pay" : "0.0.17", "ydl-pay" : "0.0.17",
"m-audioim" : "0.0.49.17", "m-audioim" : "0.0.49.18",
"ydl-flutter-base": "0.0.14.12", "ydl-flutter-base": "0.0.14.12",
//以下 几乎不会动 //以下 几乎不会动
...@@ -121,7 +121,7 @@ ext { ...@@ -121,7 +121,7 @@ ext {
"ydl-webview" : "0.0.38.29", "ydl-webview" : "0.0.38.29",
"ydl-media" : "0.0.20", "ydl-media" : "0.0.20",
"ydl-pay" : "0.0.17", "ydl-pay" : "0.0.17",
"m-audioim" : "0.0.49.17", "m-audioim" : "0.0.49.18",
"ydl-flutter-base": "0.0.10.9", "ydl-flutter-base": "0.0.10.9",
//以下 几乎不会动 //以下 几乎不会动
......
...@@ -591,7 +591,12 @@ class AudioHomeActivity : ...@@ -591,7 +591,12 @@ class AudioHomeActivity :
}) })
//通话结束或挂断时,上传日志文件 //通话结束或挂断时,上传日志文件
uploadLog() uploadLog()
showChooseDialog(2) if (isShowAxb) {
showChooseDialog(2)
} else {
showToast("对方手机暂时不在身边,请稍后再试")
userCloseCalling()
}
} }
} }
...@@ -778,13 +783,15 @@ class AudioHomeActivity : ...@@ -778,13 +783,15 @@ class AudioHomeActivity :
if (!isConnectSuccess) { if (!isConnectSuccess) {
//页面等待文案调整 //页面等待文案调整
tv_waiting.visibility = View.GONE tv_waiting.visibility = View.GONE
tv_change_doctor.text = "对方暂无应答,正在为您切换线路重播" if (isShowAxb) {
tv_change_doctor.visibility = View.VISIBLE tv_change_doctor.text = "对方暂无应答,正在为您切换线路重播"
tv_change_doctor.visibility = View.VISIBLE
}
} }
if (!isShowAxb) { if (!isShowAxb) {
tv_change_route.visibility = View.GONE tv_change_route.visibility = View.GONE
}else{ } else {
//切换线路按钮可见 //切换线路按钮可见
tv_change_route.isEnabled = true tv_change_route.isEnabled = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment