From 10572998aa54d61c45df3e334eb01e44a15df729 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Wed, 10 Aug 2022 18:35:59 +0800 Subject: [PATCH] 常量提取,优化视频模块布局 --- src/components/mini/box12-comment.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/mini/box12-comment.vue b/src/components/mini/box12-comment.vue index 4137c73..8749aff 100644 --- a/src/components/mini/box12-comment.vue +++ b/src/components/mini/box12-comment.vue @@ -6,7 +6,7 @@ <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"> @@ -33,7 +33,7 @@ <div class="samllPadding">:</div> </div> - <p slot="content">{{temp.commentContent}}</p> + <p :id="temp.id" slot="content">{{temp.commentContent}}</p> <a-comment v-for="tempData in temp.replyList"> <div slot="actions" key="comment-nested-reply-to" class="actionList"> @@ -67,7 +67,7 @@ </a-tooltip> </div> </div> - <p slot="content">{{tempData.commentContent}}</p> + <p :id="tempData.id" slot="content">{{tempData.commentContent}}</p> </a-comment> </a-comment> -- Gitblit v1.9.1