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/mdDetail.vue |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/src/components/mini/mdDetail.vue b/src/components/mini/mdDetail.vue
index 4c98a31..d6e38b0 100644
--- a/src/components/mini/mdDetail.vue
+++ b/src/components/mini/mdDetail.vue
@@ -32,8 +32,6 @@
 				<vue-markdown :source="source"></vue-markdown>
 			</div>
 		</div>
-
-
 	</div>
 
 </template>
@@ -123,15 +121,15 @@
 						return
 					}
 
-
-					//获取日志资源文件
-					this.showMsg = false;
-					this.errorMsg = "";
 					this.$axios
 						.get(res.data.articleFileURL)
 						.then((res) => {
 							this.source = res.data;
 						})
+
+					//获取日志资源文件
+					this.showMsg = false;
+					this.errorMsg = "";
 				})
 			},
 			pressEnter() {
@@ -152,7 +150,7 @@
 				this.$router.go(-1);
 			}
 		},
-		
+
 	}
 </script>
 
@@ -169,7 +167,8 @@
 	}
 
 	.markdown-body {
-		padding: 10px 20px 10px 20px;
+		min-height: 750px;
+		padding: 35px 20px 10px 20px;
 		box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
 			-8px -8px 18px #ffffff;
 	}

--
Gitblit v1.9.1