inleft
2022-08-04 00e46dcc41d259b33e6c6c9771b7e2fe2ab95401
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==5">
         </div>
         <div class="mySecret" v-else>
            <h1>怎样才能让你看到我呢</h1>
            <h1>只要你要,只要我有...</h1>
            <span class="myTip">{{errorMsg}}</span>
         </div>
      </div>
      <div v-else>
@@ -31,16 +36,17 @@
      </div>
      <div class="articleInfoMiniData">
         <div class="smallOption" @click="articleOptionHandle('like')">
            <a-icon type="like" class="samllPadding" />
            <span>{{articelMeta.likeCount==null?'0':articelMeta.likeCount}}</span>
         <div class="smallOption" @click="articleOptionHandle('dislike')">
            <a-icon type="dislike" style="margin-top: 2px;" />
         </div>
         <div>
            <a-icon type="read" class="samllPadding" />
            <span>{{articelMeta.readCount==null?'--':articelMeta.readCount}}</span>
         </div>
         <div class="smallOption" @click="articleOptionHandle('dislike')">
            <a-icon type="dislike" style="margin-top: 2px;" />
         <div class="smallOption" @click="articleOptionHandle('like')">
            <a-icon type="like" class="samllPadding" />
            <span>{{articelMeta.likeCount==null?'0':articelMeta.likeCount}}</span>
         </div>
         <div>
            <!-- <a-icon type="folder-open" class="samllPadding" /> -->
@@ -81,6 +87,7 @@
            articelMeta: "",
            isAllowedComment: 1,
            articleId: "",
            articleFileType: 1,
            source: "",
            showMsg: false,
            myLock: false,
@@ -97,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) {
@@ -121,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 +240,15 @@
      align-items: center;
   }
   .mySecretSamll {
      height: 115px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: auto;
      align-items: center;
   }
   .markdown-body,
   .articleComment {