From ae0398be3a751fd928d327f40ea4e68395813f1d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 26 Feb 2026 17:42:22 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/jagzwxm/ja_web

---
 applications/mobile-web-view/src/appPages/voiceCallDetail/index.vue |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/applications/mobile-web-view/src/appPages/voiceCallDetail/index.vue b/applications/mobile-web-view/src/appPages/voiceCallDetail/index.vue
index 9359c56..9387b7c 100644
--- a/applications/mobile-web-view/src/appPages/voiceCallDetail/index.vue
+++ b/applications/mobile-web-view/src/appPages/voiceCallDetail/index.vue
@@ -466,7 +466,8 @@
 	// 你后端没有 reject,用 busy 表示拒绝/不可接听
 	send('busy', incomingFrom, null)
 	log('❌ 已拒绝来电,发送 busy 给', incomingFrom)
-
+	const transmitData = { data: { type: 'hangupVoice' } }
+uni.postMessage(transmitData)
 	// 停止铃声
 // 	const transmitData = { data: { type: 'stopVoice' } }
 // uni.postMessage(transmitData)
@@ -572,6 +573,8 @@
 		} else {
 			log('❌ uni对象不存在,无法返回上一页')
 		}
+		const transmitData = { data: { type: 'hangupVoice' } }
+		uni.postMessage(transmitData)
 	} else {
 		// 对方挂断:显示提示,延迟10秒跳转
 		callEnded.value = true
@@ -585,6 +588,8 @@
 			} else {
 				log('❌ uni对象不存在,无法返回上一页')
 			}
+			const transmitData = { data: { type: 'hangupVoice' } }
+			uni.postMessage(transmitData)
 			// 重置通话结束状态
 			callEnded.value = false
 		}, 3000)

--
Gitblit v1.9.3