From 673f0051f948f77449809b8834b6e1c92663fdfd 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, 13 Feb 2026 11:32:35 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2=E5=A4=84?=
=?UTF-8?q?=E7=90=86=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/plugins/video/components/search.vue | 2 +-
pages/plugins/video/detail/detail.vue | 7 ++++++-
pages/plugins/video/index/index.vue | 2 +-
pages/plugins/video/search/search.vue | 10 +++++++---
4 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/pages/plugins/video/components/search.vue b/pages/plugins/video/components/search.vue
index 00451143..18409e6c 100644
--- a/pages/plugins/video/components/search.vue
+++ b/pages/plugins/video/components/search.vue
@@ -101,7 +101,7 @@ export default {
left: 0;
width: 100%;
height: 100%;
- z-index: 1;
+ z-index: 99;
}
}
\ No newline at end of file
diff --git a/pages/plugins/video/detail/detail.vue b/pages/plugins/video/detail/detail.vue
index 21466e95..666bb5f8 100644
--- a/pages/plugins/video/detail/detail.vue
+++ b/pages/plugins/video/detail/detail.vue
@@ -11,7 +11,7 @@
-
+
@@ -293,6 +293,7 @@
is_add_comment: false,
// 监听键盘高度变化事件
listener_height: 0,
+ search_query: '',
};
},
computed: {
@@ -912,6 +913,7 @@
// 关闭评论区
close_comment_modal() {
this.setData({
+ active_dropdown_id: null,
show_comment_modal: false,
move_distance: 0,
})
@@ -1245,6 +1247,7 @@
},
// 主评论回复
comment_reply(comments) {
+ this.active_dropdown_id = null;
if (!isEmpty(comments)) {
this.setData({
input_placeholder: `@${comments.user.user_name_view}`,
@@ -1254,6 +1257,7 @@
},
// 评论点赞
comment_like(id) {
+ this.active_dropdown_id = null;
this.set_givethumbs_num(this.current_video_id, id);
},
handle_slider_change(e) {
@@ -1548,6 +1552,7 @@
add_comment() {
//#ifndef H5
this.is_add_comment = true;
+ this.active_dropdown_id = null;
//#endif
},
/**
diff --git a/pages/plugins/video/index/index.vue b/pages/plugins/video/index/index.vue
index c5bd22ea..050a17ea 100644
--- a/pages/plugins/video/index/index.vue
+++ b/pages/plugins/video/index/index.vue
@@ -7,7 +7,7 @@