From c14e3278893b9dd1022aa488cee53a888c2a4c7e Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 16 Aug 2022 19:34:48 +0800
Subject: [PATCH] 表情组件优化

---
 src/components/mini/box1-info.vue |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/src/components/mini/box1-info.vue b/src/components/mini/box1-info.vue
index ea66ad9..a37ce07 100644
--- a/src/components/mini/box1-info.vue
+++ b/src/components/mini/box1-info.vue
@@ -9,14 +9,20 @@
 			<span>{{name}}</span>
 			<span>{{sentence}}</span>
 			<span>
-				<a-icon type="environment" />{{location}}
+				<router-link to="/findMe">
+					<a-icon type="environment" />{{location}}
+				</router-link>
 			</span>
+
 		</div>
 	</div>
 
 </template>
 
 <script>
+	import {
+		getAppPage
+	} from '../../api/appManage.js'
 	export default {
 		name: "box",
 		data() {
@@ -26,6 +32,12 @@
 				sentence: "十里寒塘路,烟花一半醒",
 				location: "广州"
 			}
+		},
+		created() {
+			// console.log(getAppPage().then((res) => {
+			// 	console.log(res);
+			// 	return res
+			// }));
 		}
 	}
 </script>
@@ -47,6 +59,10 @@
 
 	/* 一言 */
 	.blog-user-message {
+		a {
+			color: #555;
+		}
+
 		text-align: center;
 		font-size: 15px;
 		color: #555;

--
Gitblit v1.9.1