From afab3a98a65f7fb4f342251238ab3c329e4242dd Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Tue, 30 Aug 2022 18:44:23 +0800
Subject: [PATCH] 调整统计脚本渲染逻辑 新增自定义表情组件

---
 src/components/mini/box13-reply.vue |   14 +++++++++-----
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/components/mini/box13-reply.vue b/src/components/mini/box13-reply.vue
index 7809b0b..237e20d 100644
--- a/src/components/mini/box13-reply.vue
+++ b/src/components/mini/box13-reply.vue
@@ -31,7 +31,7 @@
 				<span v-html="parseContent(msgInfo.userComment).replace(/\n/g, '<br>')"></span>
 			</div>
 		</div>
-		<a-comment>
+		<a-comment  style="min-height: 320px;">
 			<div slot="content">
 				<MyOwO :content.sync="form.visitorContent" :replyHolder="replyHolder"></MyOwO>
 				<div>
@@ -80,9 +80,6 @@
 			}
 		},
 		methods: {
-			// getTargetArea() {
-			// 	return this.$refs.targetArea;
-			// },
 			getMsgInfo(param) {
 				this.msgInfo = param;
 				this.showReplyMsgInfo = true;
@@ -118,6 +115,13 @@
 				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
 					}
 				}
@@ -237,7 +241,7 @@
 					"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,

--
Gitblit v1.9.1