From 944ca64b2650470a2b0616c43f83e6e88123a7b2 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Tue, 02 Aug 2022 18:00:03 +0800 Subject: [PATCH] 补充日志内页提示内容 --- src/components/mini/mdDetail.vue | 29 ++++++++++++++++++++++++++--- src/components/mini/box-new-article.vue | 7 ++++--- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/src/components/mini/box-new-article.vue b/src/components/mini/box-new-article.vue index 7c7b909..ee2ea16 100644 --- a/src/components/mini/box-new-article.vue +++ b/src/components/mini/box-new-article.vue @@ -30,15 +30,16 @@ <div class="recent-post-info"> - <a :href="jumpURL" target="_blank" class="article-title" v-if="articleFileType==5" + <!-- <a :href="jumpURL" target="_blank" class="article-title" v-if="articleFileType==5" @click="showMsg(articleFileType,jumpURL)"> <a-icon type="lock" style="color:rgba(0,0,0,.25)" v-if="authStatus==3" /> <a-icon type="stop" style="color:rgba(0,0,0,.25)" v-if="authStatus==2" /> {{title}} <a-badge :count="1" dot v-if="isAnyUpdate==1" title="最近有更新"></a-badge> - </a> + </a> --> - <router-link :to="{path:'/mdDetail',query:{id:id}}" class="article-title" v-else> + <router-link :to="{path:'/mdDetail',query:{id:id,articleFileType:articleFileType}}" + class="article-title"> <a-icon type="lock" style="color:rgba(0,0,0,.25)" v-if="authStatus==3" /> <a-icon type="stop" style="color:rgba(0,0,0,.25)" v-if="authStatus==2" /> {{title}} diff --git a/src/components/mini/mdDetail.vue b/src/components/mini/mdDetail.vue index f22bcdb..7465c86 100644 --- a/src/components/mini/mdDetail.vue +++ b/src/components/mini/mdDetail.vue @@ -6,9 +6,14 @@ </a-button> </div> - <div class="mySecret" v-if="showMsg && !myLock"> - <h1>怎样才能让你看到我呢</h1> - <h1>只要你要,只要我有...</h1> + <div class="mySecretSamll" v-if="showMsg && !myLock"> + <div v-if="articleFileType==5"> + + </div> + <div class="mySecret" v-else> + <h1>怎样才能让你看到我呢</h1> + <h1>只要你要,只要我有...</h1> + </div> <span class="myTip">{{errorMsg}}</span> </div> @@ -82,6 +87,7 @@ articelMeta: "", isAllowedComment: 1, articleId: "", + articleFileType: 1, 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,12 @@ queryDetail() { this.showMsg = true; this.errorMsg = "加载中.."; + + if (this.articleFileType == 5) { + this.errorMsg = "没有更多啦.."; + return + } + queryBlogArticleDetail({ id: this.articleId, authWord: this.secret == "" ? null : md5(this.secret) @@ -225,6 +239,15 @@ padding-left: auto; align-items: center; } + + .mySecretSamll { + height: 115px; + display: flex; + flex-direction: column; + justify-content: center; + padding-left: auto; + align-items: center; + } .markdown-body, -- Gitblit v1.9.1