From 26659138a22af9683e89a3da3c037a722e1524a1 Mon Sep 17 00:00:00 2001 From: v_xugzhou <941071842@qq.com> Date: Tue, 18 Jun 2024 11:43:27 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E7=AC=AC=E4=B8=89=E6=96=B9=E6=8F=92?= =?UTF-8?q?=E4=BB=B6=E8=BE=93=E5=85=A5=E6=A1=86=E5=A4=B1=E7=84=A6=E5=90=8E?= =?UTF-8?q?=E6=9C=AA=E5=8E=BB=E6=8B=89=E5=8F=96=E5=88=97=E8=A1=A8=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E5=A4=8D=20#ignore=20#=20Reviewed,=20transac?= =?UTF-8?q?tion=20id:=209992?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../desktop/src/components/common/RenderForm/tags/TagInput.vue | 2 +- .../src/components/common/RenderForm/tags/TagTextarea.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/desktop/src/components/common/RenderForm/tags/TagInput.vue b/frontend/desktop/src/components/common/RenderForm/tags/TagInput.vue index f22a9f7d29..10c42d1a5d 100644 --- a/frontend/desktop/src/components/common/RenderForm/tags/TagInput.vue +++ b/frontend/desktop/src/components/common/RenderForm/tags/TagInput.vue @@ -415,7 +415,7 @@ }, // 文本框失焦 handleInputBlur (e) { - this.$emit('blur') + this.$emit('blur', this.input.value) this.input.focus = false // 更新文本框结构,生成tag标签 this.updateInputHtml() diff --git a/frontend/desktop/src/components/common/RenderForm/tags/TagTextarea.vue b/frontend/desktop/src/components/common/RenderForm/tags/TagTextarea.vue index ef33197dd4..6f27b02bf7 100644 --- a/frontend/desktop/src/components/common/RenderForm/tags/TagTextarea.vue +++ b/frontend/desktop/src/components/common/RenderForm/tags/TagTextarea.vue @@ -364,7 +364,7 @@ }, // 文本框失焦 handleInputBlur (e) { - this.$emit('blur') + this.$emit('blur', this.input.value) this.input.focus = false // 更新文本框结构,生成tag标签 this.updateInputHtml()