From c5653f411399e3895f8b5ed6db17c9db2d599a3c Mon Sep 17 00:00:00 2001 From: "wu.jian2" Date: Tue, 26 Sep 2023 16:05:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=BE=93=E5=85=A5=E6=A1=86=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E6=95=B0=E6=8D=AE=E8=81=94=E5=8A=A8=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=9B=9E=E8=BD=A6=E9=94=AE=E8=A7=A6=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data-room-ui/packages/BasicComponents/Input/index.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/data-room-ui/packages/BasicComponents/Input/index.vue b/data-room-ui/packages/BasicComponents/Input/index.vue index 116c78c5..5e715b93 100644 --- a/data-room-ui/packages/BasicComponents/Input/index.vue +++ b/data-room-ui/packages/BasicComponents/Input/index.vue @@ -9,13 +9,14 @@ { + console.log('val', val) this.linkage({ [this.config.code]: val }) }) }, + keyupEnter () { + this.linkage({ [this.config.code]: this.value }) + }, debounce (fn, delay = 500) { clearTimeout(this.timer) this.timer = setTimeout(() => {