diff --git a/src/views/Cinema.vue b/src/views/Cinema.vue index 302f32c..d6eb472 100644 --- a/src/views/Cinema.vue +++ b/src/views/Cinema.vue @@ -617,7 +617,7 @@ const parseVideoType = (movie: MovieInfo) => { // 设置聊天框高度 const resetChatAreaHeight = () => { const h = playArea.value ? playArea : noPlayArea; - chatArea && h && (chatArea.value.style.height = h.value.scrollHeight - 63 + "px"); + chatArea && h && (chatArea.value.style.height = h.value.scrollHeight - 49 + "px"); }; onMounted(() => { @@ -690,7 +690,6 @@ const Player = defineAsyncComponent(() => import("@/components/Player.vue"));