From 5d50c15f45a5eb861095b8a032cb9273b2d88ad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Thu, 8 Jan 2026 14:17:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=9D=99=E9=9F=B3=E6=92=AD?= =?UTF-8?q?=E6=94=BE=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/plugins/live/pull/pull.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pages/plugins/live/pull/pull.vue b/pages/plugins/live/pull/pull.vue index 847ec5a8..e2b6c58d 100644 --- a/pages/plugins/live/pull/pull.vue +++ b/pages/plugins/live/pull/pull.vue @@ -60,17 +60,25 @@ theme_view: app.globalData.get_theme_value_view(), is_muted_auto_play_success: false, is_muted_auto_play_error: false, - initial_reminder: false } }, methods: { muted_auto_play_success(is_muted) { if (is_muted) { + // 静音播放成功, 显示静音播放按钮 this.is_muted_auto_play_success = true; + // 隐藏自动播放按钮 + this.is_muted_auto_play_error = false; } }, + // 静音自动播放失败 muted_auto_play_error() { + // 隐藏加载中 + uni.hideLoading(); + // 显示自动播放按钮 this.is_muted_auto_play_error = true; + // 隐藏静音提示 + this.is_muted_auto_play_success = false; }, // 静音提示点击 muted_tap() {