| | |
| | | </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> |
| | |
| | | </a-input-password> |
| | | </a-auto-complete> |
| | | <span class="myTip">{{errorMsg}}</span> |
| | | |
| | | |
| | | </div> |
| | | |
| | | <div class="markdown-body article-detail" v-else> |
| | | <vue-markdown :source="source"></vue-markdown> |
| | | </div> |
| | | </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="articleInfoMiniData" > |
| | | <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" /> --> |
| | |
| | | import comment from "../mini/box12-comment.vue" |
| | | |
| | | import axios from 'axios' |
| | | |
| | | import myConstant from "../../config/myConstant.js" |
| | | |
| | | export default { |
| | | components: { |
| | | VueMarkdown, |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | myConstant:myConstant, |
| | | articelMeta: "", |
| | | isAllowedComment: 1, |
| | | articleId: "", |
| | | articleFileType: myConstant.fileTypeMarkDown, |
| | | source: "", |
| | | showMsg: false, |
| | | myLock: false, |
| | |
| | | }, |
| | | 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) { |
| | |
| | | queryDetail() { |
| | | this.showMsg = true; |
| | | this.errorMsg = "加载中.."; |
| | | |
| | | if (this.articleFileType == myConstant.fileTypeShort) { |
| | | this.errorMsg = "没有更多啦.."; |
| | | return |
| | | } |
| | | |
| | | queryBlogArticleDetail({ |
| | | id: this.articleId, |
| | | authWord: this.secret == "" ? null : md5(this.secret) |
| | |
| | | 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; |
| | | } |