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