From 93768186ca58acd0fc0b6963d0e017979c087631 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Tue, 23 Aug 2022 02:09:58 +0800 Subject: [PATCH] 上下篇日志提示加入 --- src/components/common/OwO.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/common/OwO.vue b/src/components/common/OwO.vue index 794a3e5..08e7f24 100644 --- a/src/components/common/OwO.vue +++ b/src/components/common/OwO.vue @@ -5,7 +5,7 @@ class="OwO-textarea" /> </a-form-item> <span class="myTip fadeIn" v-if="showTip">现在你可以发送表情啦</span> - <div ref="container" class="OwO fadeIn" v-show="init || visitorContent.length>0"></div> + <div ref="container" class="OwO fadeIn" v-show="init"></div> </div> </template> @@ -28,20 +28,20 @@ watch: { visitorContent: function(newValue, oldValue) { if (newValue.length > 0) { - this.init = true; - this.initOwO(); - if (!this.showTip) { + if (!this.init) { this.showTip = true; setTimeout(() => { this.showTip = false; }, 5000); } + this.init = true; + this.initOwO(); } this.$emit("update:content", newValue) }, }, methods: { - + initOwO() { var OwO_demo = new OwO({ logo: 'OωO表情', -- Gitblit v1.9.1