From fc0c102554f509989dd74b199f298a67f266c3c8 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 25 Feb 2022 12:11:27 +0800
Subject: [PATCH] 虫洞添加,统计代码添加,样式局部调整

---
 src/components/mini/tagTime.vue |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/src/components/mini/tagTime.vue b/src/components/mini/tagTime.vue
index e1f669e..b3b9503 100644
--- a/src/components/mini/tagTime.vue
+++ b/src/components/mini/tagTime.vue
@@ -45,13 +45,19 @@
 		created() {
 			this.year = this.$route.query.year;
 			this.month = this.$route.query.month;
+			archiveGroup({
+				year: this.year,
+				month: this.month
+			}).then((res) => {
+				this.list = res.data;
+			})
 		},
 		watch: {
 			'$route'(to, from) {
 				if ("tagTime" === to.name) {
 					this.year = this.$route.query.year;
 					this.month = this.$route.query.month;
-					this.$message.info('loading',0.3);
+					this.$message.info('loading', 0.3);
 					archiveGroup({
 						year: this.year,
 						month: this.month

--
Gitblit v1.9.1