From 81c155e7e00b83f06e6486a8d904428a44b8b275 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Wed, 23 Feb 2022 16:47:10 +0800 Subject: [PATCH] 评论页添加,修改站点默认logo --- 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