From f0d125e6e0a68990c3288a358d982ed71a1fbf15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Fri, 28 Nov 2025 16:01:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=9B=B4=E6=92=AD=E7=BB=93?= =?UTF-8?q?=E6=9D=9F=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/plugins/live/pull/mixins/mixins.js | 7 +++++-- pages/plugins/live/pull/pull.vue | 14 ++++++++++++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/pages/plugins/live/pull/mixins/mixins.js b/pages/plugins/live/pull/mixins/mixins.js index 29a437e0..b788cb69 100644 --- a/pages/plugins/live/pull/mixins/mixins.js +++ b/pages/plugins/live/pull/mixins/mixins.js @@ -3,7 +3,8 @@ export default { data() { return { windowWidth: 0, - windowHeight: 1000, + windowHeight: 0, + is_live_ended: false } }, onLoad(params) { @@ -27,6 +28,8 @@ export default { // #endif }, methods: { - + ended() { + this.is_live_ended = true; + } } } \ No newline at end of file diff --git a/pages/plugins/live/pull/pull.vue b/pages/plugins/live/pull/pull.vue index 3948f40a..7fe371cf 100644 --- a/pages/plugins/live/pull/pull.vue +++ b/pages/plugins/live/pull/pull.vue @@ -1,10 +1,17 @@ @@ -36,4 +43,7 @@ width: 100%; height: 100%; } + .live-ended { + + } \ No newline at end of file