| | |
| | | </a-input> |
| | | </a-form-model-item> |
| | | <a-form-model-item label="邮箱" prop="eMail"> |
| | | <a-input v-model="form.eMail" placeholder="..仅后台可见"> |
| | | <a-input v-model="form.eMail" placeholder="保密项(选填)"> |
| | | </a-input> |
| | | </a-form-model-item> |
| | | <a-form-model-item label="主页" prop="homePage"> |
| | | <a-input v-model="form.homePage" placeholder="https:// or http://"> |
| | | </a-input> |
| | | </a-form-model-item> |
| | | |
| | | <a-form-model-item label="认证" |
| | | v-show="form.nickName=='inleft'||form.nickName=='笔墨'||form.nickName=='阿墨'"> |
| | | <a-input v-model="form.authCode" autocomplete='new-password' type="password" placeholder="我的授权码"> |
| | | </a-input> |
| | | </a-form-model-item> |
| | | </a-form-model> |
| | | </div> |
| | | |
| | | <div class="replyMsgInfo" v-if="showReplyMsgInfo"> |
| | | <div>{{msgInfo.useName}} </div> |
| | | <div style="padding: 0px 3px;"> : </div> |
| | | <div> |
| | | <span v-html="msgInfo.userComment.replace(/\n/g, '<br>')"></span> |
| | | {{msgInfo.useName}}<span style="padding: 0px 3px;"> : </span> |
| | | </div> |
| | | <div> |
| | | <span v-html="parseContent(msgInfo.userComment).replace(/\n/g, '<br>')"></span> |
| | | </div> |
| | | </div> |
| | | <a-comment> |
| | | <a-comment style="min-height: 320px;"> |
| | | <div slot="content"> |
| | | <a-form-item> |
| | | <a-textarea :rows="4" v-model="form.visitorContent" :placeholder="replyHolder" /> |
| | | </a-form-item> |
| | | <MyTextarea :content.sync="form.visitorContent" :replyHolder="replyHolder"></MyTextarea> |
| | | |
| | | <div> |
| | | <a-button html-type="submit" type="primary" @click="send()" v-if="!showReplyMsgInfo" |
| | | :disabled="isSending || $attrs.isAllowedComment==0"> |
| | | 高低整两句 |
| | | </a-button> |
| | | <a-button html-type="submit" type="primary" v-else @click="send()" |
| | | :disabled="isSending || $attrs.isAllowedComment==0"> |
| | | 回复Ta |
| | | </a-button> |
| | | <span class="myTip" v-if="$attrs.isAllowedComment==0">很遗憾,评论已关闭</span> |
| | | <a-button html-type="submit" type="primary" @click="send()" v-if="!showReplyMsgInfo" |
| | | :disabled="isSending || $attrs.isAllowedComment==0"> |
| | | 高低整两句 |
| | | </a-button> |
| | | <a-button html-type="submit" type="primary" v-else @click="send()" |
| | | :disabled="isSending || $attrs.isAllowedComment==0"> |
| | | 回复Ta |
| | | </a-button> |
| | | <span class="myTip" v-if="$attrs.isAllowedComment==0">很遗憾,评论已关闭</span> |
| | | </div> |
| | | |
| | | <div> |
| | | <a-checkbox style=" margin-left: 8px;" v-if="!showReplyMsgInfo" v-model="form.isSecretMsg"> |
| | | <a-checkbox v-model="form.isReceiveMail"> |
| | | 接收邮件回复通知 |
| | | </a-checkbox> |
| | | <a-checkbox v-if="!showReplyMsgInfo" v-model="form.isSecretMsg"> |
| | | 悄悄说..<span class="myTip">(仅登录后可查看)</span> |
| | | </a-checkbox> |
| | | <!-- <a-checkbox v-model="form.isReceiveMail"> |
| | | 接收邮件回复通知 |
| | | </a-checkbox> --> |
| | | </div> |
| | | </div> |
| | | </a-comment> |
| | | </div> |
| | | |
| | | </template> |
| | | |
| | | <script> |
| | | import { |
| | | blogCommentAdd |
| | | } from '../../api/blogArticleComment.js' |
| | | import md5 from 'js-md5'; |
| | | |
| | | import MyTextarea from '../common/MyTextarea.vue' |
| | | import myConstant from "../../config/myConstant.js" |
| | | |
| | | export default { |
| | | components: { |
| | | MyTextarea |
| | | }, |
| | | props: { |
| | | parseContent: { |
| | | type: Function, |
| | | default: null |
| | | } |
| | | }, |
| | | methods: { |
| | | getMsgInfo(param) { |
| | | this.msgInfo = param; |
| | |
| | | return |
| | | } |
| | | |
| | | if (this.form.isReceiveMail && this.form.eMail == "") { |
| | | this.$message.info("如果是想接收通知的话,你可能需要填上一个邮箱..") |
| | | return |
| | | } |
| | | |
| | | var res; |
| | | this.$refs.myForm.validate(valid => { |
| | | if (valid) { |
| | |
| | | res = false; |
| | | } |
| | | }); |
| | | |
| | | if (this.form.nickName == 'inleft' || this.form.nickName == '笔墨' || this.form.nickName == '阿墨') { |
| | | if (this.form.authCode == null || this.form.authCode == "") { |
| | | this.$message.info("此名称在这里使用需要正确的授权码..") |
| | | return |
| | | } |
| | | } |
| | | |
| | | if (this.form.eMail == 'inleft@qq.com') { |
| | | if (this.form.authCode == null || this.form.authCode == "") { |
| | | this.$message.info("此邮箱在这里使用需要正确的授权码..") |
| | | return |
| | | } |
| | | } |
| | | |
| | | |
| | | var articleId = this.$attrs.articleId; |
| | | let commentType = (articleId == null || articleId == undefined) ? 1 : 2; |
| | | this.isSending = true; |
| | | |
| | | //记录最新访客信息 |
| | | if (this.form.visitorId == 1) { |
| | | var today = new Date(); |
| | | var year = today.getFullYear() + ""; |
| | | var month = today.getMonth() + 1 + ""; |
| | | var date = today.getDate() + ""; |
| | | var num = ""; |
| | | for (var i = 0; i < 4; i++) { |
| | | num = num + Math.floor(Math.random() * 9) + ""; |
| | | } |
| | | this.form.visitorId = year + (month > 10 ? month : '0' + month) + date + num |
| | | } |
| | | |
| | | localStorage.setItem(this.VisitorDataKey, JSON.stringify(this.form)) |
| | | |
| | | this.isSending = true; |
| | | blogCommentAdd({ |
| | | parentId: this.msgInfo.parentId, |
| | | replyId: this.msgInfo.replyId, |
| | | "visitorId": "1", |
| | | "isReceiveMail": 0, |
| | | "visitorId": this.form.visitorId, |
| | | "articleId": articleId, |
| | | "commentType": commentType, |
| | | "authStatus": this.form.isSecretMsg ? 2 : 1, |
| | | // "isReceiveMail": this.form.isReceiveMail ? 1 : 0, |
| | | "isReceiveMail": this.form.isReceiveMail ? 1 : 0, |
| | | "visitorEmail": this.form.eMail, |
| | | "visitorHomePage": this.form.homePage, |
| | | "visitorNickName": this.form.nickName, |
| | | "commentContent": this.form.visitorContent, |
| | | "authCode": this.form.authCode != null && this.form.authCode != "" ? md5(this.form.authCode) : |
| | | '' |
| | | }).then((res) => { |
| | | this.isSending = false; |
| | | if (res.code == 200) { |
| | |
| | | }, |
| | | |
| | | data() { |
| | | let tempVisitorData = localStorage.getItem(this.VisitorDataKey); |
| | | let vistorData = { |
| | | nickName: "", |
| | | eMail: "", |
| | | homePage: "", |
| | | isReceiveMail: false, |
| | | isSecretMsg: false, |
| | | visitorContent: "", |
| | | parentId: 0, |
| | | replyId: 0, |
| | | visitorId: 1, |
| | | authCode: '' |
| | | }; |
| | | |
| | | if (tempVisitorData != null && tempVisitorData != undefined) { |
| | | tempVisitorData = JSON.parse(tempVisitorData); |
| | | vistorData.nickName = tempVisitorData.nickName; |
| | | vistorData.eMail = tempVisitorData.eMail; |
| | | vistorData.homePage = tempVisitorData.homePage; |
| | | vistorData.isReceiveMail = tempVisitorData.isReceiveMail; |
| | | vistorData.isSecretMsg = tempVisitorData.isSecretMsg; |
| | | vistorData.visitorId = tempVisitorData.visitorId; |
| | | vistorData.authCode = tempVisitorData.authCode; |
| | | } |
| | | |
| | | return { |
| | | VisitorDataKey: myConstant.VisitorDataKey, |
| | | isSending: false, |
| | | replyHolder: "", |
| | | msgInfo: { |
| | |
| | | span: 15, |
| | | offset: 0 |
| | | }, |
| | | form: { |
| | | nickName: "", |
| | | eMail: "", |
| | | homePage: "", |
| | | isReceiveMail: false, |
| | | isSecretMsg: false, |
| | | visitorContent: "", |
| | | parentId: 0, |
| | | replyId: 0 |
| | | }, |
| | | form: vistorData, |
| | | rules: { |
| | | "nickName": [{ |
| | | message: '怎么称呼?', |
| | |
| | | "eMail": [{ |
| | | trigger: 'blur', |
| | | pattern: /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/, |
| | | message: '邮箱格式不正确' |
| | | message: '这邮箱格式?没见过呀..' |
| | | }, { |
| | | trigger: 'blur', |
| | | max: 50, |
| | |
| | | }], |
| | | "homePage": [{ |
| | | trigger: 'blur', |
| | | pattern: /^((https|http)?:\/\/)[^\s]+/, |
| | | message: '仅支持 https | http' |
| | | pattern: /^((https|http)?:\/\/)+/, |
| | | message: '仅支持 https:// | http://' |
| | | }, { |
| | | trigger: 'blur', |
| | | max: 50, |
| | |
| | | </script> |
| | | |
| | | <style lang="less"> |
| | | .replyMsgInfo img { |
| | | margin-bottom: -0.125rem; |
| | | img min-height: 3.5rem; |
| | | height: 2em; |
| | | } |
| | | |
| | | .replyMsgInfo { |
| | | display: flex; |
| | | flex-direction: column; |
| | | border-radius: 4px; |
| | | box-shadow: 0px 9px 10px 0 rgba(0, 0, 0, 0.24), 1px 3px 15px 0 rgba(0, 0, 0, 0.19); |
| | | padding: 20px 25px 20px; |
| | | margin-left: 15px; |
| | | margin-top: 10px; |
| | | } |
| | | |
| | | .OwO { |
| | | padding: 0px 0px 20px 0px; |
| | | } |
| | | |
| | | .OwO .OwO-logo { |
| | | height: 30px; |
| | | } |
| | | |
| | | .OwO .quyin, |
| | | .OwO img { |
| | | margin-bottom: -0.125rem; |
| | | min-height: 3.5rem; |
| | | height: 1em; |
| | | } |
| | | </style> |