From 271ca6cb0ee2ff0a789bf74d1821e7891a7043bb Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 30 Aug 2022 21:57:42 +0800
Subject: [PATCH] 自定义表情组件

---
 src/components/mini/box-friend.vue |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/components/mini/box-friend.vue b/src/components/mini/box-friend.vue
index 33fdc88..47ecd44 100644
--- a/src/components/mini/box-friend.vue
+++ b/src/components/mini/box-friend.vue
@@ -1,6 +1,7 @@
 <template>
 	<div class="myFriend">
-		<div v-for="temp in list">
+		<div v-if="list.length==0" class="mySecret"> 空空如也..</div>
+		<div v-for="temp in list" v-else>
 			<h1>{{temp.groupName}}</h1>
 			<hr>
 			<div class="link-box">
@@ -204,6 +205,7 @@
 			width: calc(100% / 3 - 8rem);
 		}
 	}
+
 	@media screen and (max-width: 1438px) and (min-width: 791px) {
 		.link-box a {
 			margin: 0 0.9375rem 3.75rem;

--
Gitblit v1.9.1