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/box-friend.vue |   49 +++++++++++++++++++++++++++++++------------------
 1 files changed, 31 insertions(+), 18 deletions(-)

diff --git a/src/components/mini/box-friend.vue b/src/components/mini/box-friend.vue
index c570349..49e55ce 100644
--- a/src/components/mini/box-friend.vue
+++ b/src/components/mini/box-friend.vue
@@ -3,18 +3,19 @@
 		<div v-for="temp in list">
 			<h1>{{temp.groupName}}</h1>
 			<hr>
-			<div class="link-box"  >
+			<div class="link-box">
 				<!-- <a href="#" target="_blank" class="no-underline"> -->
+
 				<a :href="listTemp.url" target="_blank" class="no-underline" v-for="listTemp in temp.linkVoList">
-					<div class="thumb">
-						<img width="200" height="200" 
-						 :src="listTemp.avatar" :onerror="img404" 
-							:alt="listTemp.name">
-					</div>
-					<div class="content">
-						<p class="title">
-							{{listTemp.name}}
-						</p>
+					<div class="myFlex">
+						<div class="thumb">
+							<img width="200" height="200" :src="listTemp.avatar" :onerror="img404" :alt="listTemp.name">
+						</div>
+						<div class="content">
+							<p class="title">
+								{{listTemp.name}}
+							</p>
+						</div>
 					</div>
 				</a>
 			</div>
@@ -34,7 +35,7 @@
 		},
 		data() {
 			return {
-				img404:"this.onerror='';this.src=\"https://blog.zeruns.tech/tx.jpg\"",
+				img404: "this.onerror='';this.src=\"http://t.inleft.com/share/media_photo/404.png\"",
 				list: []
 			}
 		}
@@ -44,9 +45,16 @@
 </script>
 
 <style lang="less">
+	.myFlex {
+		height: 100%;
+		display: flex;
+		flex-direction: column;
+		justify-content: flex-end;
+	}
+
 	.myFriend {
 		box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
-		padding: 10px 30px 0px;
+		padding: 10px 30px 20px;
 
 		h1 {
 			margin: .67em 0;
@@ -68,9 +76,9 @@
 	}
 
 	.link-box {
-		padding: 4.375rem 2.1875rem 2.1875rem;
+		padding: 3.375rem 2.1875rem 0.1875rem;
 		overflow: hidden;
-		margin: -3.125rem;
+		margin: -3.125rem -3.125rem 0;
 		display: flex;
 		flex-direction: row;
 		flex-wrap: wrap;
@@ -183,16 +191,16 @@
 	@media screen and (min-width: 1600px) {
 		.link-box a {
 			margin: 0 0.9375rem 3.75rem;
-			width: -webkit-calc(120% / 5 - 1.875rem);
-			width: calc(120% / 5 - 1.875rem);
+			width: -webkit-calc(100% / 5 - 1.875rem);
+			width: calc(100% / 5 - 1.875rem);
 		}
 	}
 
 	@media screen and (max-width: 1599px) and (min-width: 768px) {
 		.link-box a {
 			margin: 0 0.9375rem 3.75rem;
-			width: -webkit-calc(130% / 4 - 1.875rem);
-			width: calc(130% / 4 - 1.875rem);
+			width: -webkit-calc(100% / 4 - 1.875rem);
+			width: calc(100% / 4 - 1.875rem);
 		}
 	}
 
@@ -211,5 +219,10 @@
 			width: -webkit-calc(50% - 1.5rem);
 			width: calc(50% - 1.5rem);
 		}
+
+		.blog-main {
+			padding-left: 3%;
+			padding-right: 3%;
+		}
 	}
 </style>

--
Gitblit v1.9.1