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/group/tool.vue |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/src/components/group/tool.vue b/src/components/group/tool.vue
index 7e33920..cfba8a6 100644
--- a/src/components/group/tool.vue
+++ b/src/components/group/tool.vue
@@ -8,6 +8,7 @@
 			<!-- <a-button @click="showDrawer2">
 				抽屉2
 			</a-button> -->
+			
 			<a-button @click="showMessage">
 				<a-badge status="success">
 					消息
@@ -28,7 +29,10 @@
 					<a-icon :type="iconType" />
 				</transition>
 			</a-button>
-
+			<a-button @click="addLink" v-if="showHidenButton">
+				加链
+				<a-icon type="smile" />
+			</a-button>
 
 			<!-- <a-button>
 				工具
@@ -39,15 +43,28 @@
 </template>
 
 <script>
+	import myConstant from "../../config/myConstant.js"
+
 	export default {
 		data() {
 			return {
 				iconType: "arrows-alt",
 				screen: false,
-				screenModel: "拉伸"
+				screenModel: "拉伸",
+				showHidenButton: false,
+			}
+		},
+		mounted() {
+			let tempVisitorData = localStorage.getItem(myConstant.visitorDataKey);
+			if (tempVisitorData != null && JSON.parse(tempVisitorData).nickName == myConstant.userName) {
+				//this.$message.info("认证成功..")
+				this.showHidenButton = true
 			}
 		},
 		methods: {
+			addLink() {
+				this.$message.info("添加友链中..")
+			},
 			showMessage() {
 				this.$emit('showMessage')
 			},

--
Gitblit v1.9.1