From af029bdfb645bd2b75fbab687c1a5f45b428d801 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Thu, 11 Aug 2022 18:53:48 +0800
Subject: [PATCH] 优化上传逻辑,月台添加mini播放弹窗

---
 src/components/mini/box12-comment.vue |   17 +++++++++++++++--
 1 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/src/components/mini/box12-comment.vue b/src/components/mini/box12-comment.vue
index 220f93d..684caa2 100644
--- a/src/components/mini/box12-comment.vue
+++ b/src/components/mini/box12-comment.vue
@@ -1,12 +1,20 @@
 <template>
 	<div>
-		<replyBox ref="commentBoxId" v-bind="$attrs" @sendMsg="sendMsg()"></replyBox>
+		<a-collapse v-if="foldReply">
+			<a-collapse-panel key="replyPanel" header="回复">
+				<replyBox ref="commentBoxId" v-bind="$attrs" @sendMsg="sendMsg()"></replyBox>
+			</a-collapse-panel>
+		</a-collapse>
+		<div v-else>
+			<replyBox ref="commentBoxId" v-bind="$attrs" @sendMsg="sendMsg()"></replyBox>
+		</div>
+
 		<a-modal v-model="visible" :title="replyTaget" :footer="null"
 			:bodyStyle="{'overflow':'overlay','maxHeight': '550px','scrollbarWidth': 'none'}">
 			<replyBox ref="replyBoxId" v-bind="$attrs" @sendMsg="sendMsg()"></replyBox>
 		</a-modal>
 
-		<div class="mySecret" style="max-height:350px ;" v-if="commentListData.length==0">
+		<div class="mySecret" style="max-height:250px ;" v-if="commentListData.length==0">
 			<p>空空如也..</p>
 		</div>
 		<div v-for="temp in commentListData" class="commentList">
@@ -100,6 +108,11 @@
 		components: {
 			replyBox
 		},
+		props: {
+			"foldReply": {
+				default: false,
+			},
+		},
 		methods: {
 			updateCommentList(articleId) {
 				queryBlogCommentList({

--
Gitblit v1.9.1