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/mini/mdDetail.vue |   43 ++++++++++++++++++++++++++++++++++---------
 1 files changed, 34 insertions(+), 9 deletions(-)

diff --git a/src/components/mini/mdDetail.vue b/src/components/mini/mdDetail.vue
index f22bcdb..a55f3d5 100644
--- a/src/components/mini/mdDetail.vue
+++ b/src/components/mini/mdDetail.vue
@@ -6,10 +6,15 @@
 			</a-button>
 		</div>
 
-		<div class="mySecret" v-if="showMsg && !myLock">
-			<h1>怎样才能让你看到我呢</h1>
-			<h1>只要你要,只要我有...</h1>
-			<span class="myTip">{{errorMsg}}</span>
+		<div v-if="showMsg && !myLock">
+			<div class="mySecretSamll" v-if="articleFileType==myConstant.fileTypeShort">
+				<p>碎碎念只有那么一点了,但是下面依旧可以碎碎念</p>
+			</div>
+			<div class="mySecret" v-else>
+				<h1>怎样才能让你看到我呢</h1>
+				<h1>只要你要,只要我有...</h1>
+				<span class="myTip">{{errorMsg}}</span>
+			</div>
 		</div>
 
 		<div v-else>
@@ -30,8 +35,6 @@
 			</div>
 		</div>
 		<div class="articleInfoMiniData">
-
-
 			<div class="smallOption" @click="articleOptionHandle('dislike')">
 				<a-icon type="dislike" style="margin-top: 2px;" />
 			</div>
@@ -71,6 +74,7 @@
 	import comment from "../mini/box12-comment.vue"
 
 	import axios from 'axios'
+	import myConstant from "../../config/myConstant.js"
 
 	export default {
 		components: {
@@ -79,9 +83,11 @@
 		},
 		data() {
 			return {
+				myConstant: myConstant,
 				articelMeta: "",
 				isAllowedComment: 1,
 				articleId: "",
+				articleFileType: myConstant.fileTypeMarkDown,
 				source: "",
 				showMsg: false,
 				myLock: false,
@@ -98,11 +104,13 @@
 		},
 		created() {
 			this.articleId = this.$route.query.id;
+			this.articleFileType = this.$route.query.articleFileType;
 		},
 		watch: {
 			'$route'(to, from) {
 				if ("mdDetail" === to.name) {
 					this.articleId = this.$route.query.id;
+					this.articleFileType = this.$route.query.articleFileType;
 				}
 			},
 			articleId: function(newValue, oldValue) {
@@ -122,6 +130,14 @@
 			queryDetail() {
 				this.showMsg = true;
 				this.errorMsg = "加载中..";
+
+				if (this.articleFileType == myConstant.fileTypeShort ||
+					this.articleFileType == myConstant.fileTypeVideo ||
+					this.articleFileType == myConstant.fileTypeMp3) {
+					this.errorMsg = "该类型日志在这里没有更多啦..";
+					return
+				}
+
 				queryBlogArticleDetail({
 					id: this.articleId,
 					authWord: this.secret == "" ? null : md5(this.secret)
@@ -179,7 +195,7 @@
 
 			},
 			back: function() {
-				this.$router.go(-1);
+				this.$router.back(-1);
 			}
 		},
 
@@ -226,11 +242,20 @@
 		align-items: center;
 	}
 
+	.mySecretSamll {
+		height: 115px;
+		display: flex;
+		flex-direction: column;
+		justify-content: center;
+		padding-left: auto;
+		align-items: center;
+	}
+
 
 	.markdown-body,
 	.articleComment {
-		min-height: 750px;
-		padding: 35px 20px 10px 20px;
+		min-height: 70%;
+		padding: 35px 20px 30px 20px;
 		box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
 			-8px -8px 18px #ffffff;
 	}

--
Gitblit v1.9.1