From 6a5ad10b807047ec4aa98f89255e91f002ce420d Mon Sep 17 00:00:00 2001 From: luojie <125330818@qq.com> Date: Tue, 13 Jan 2026 12:17:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86][upd?= =?UTF-8?q?ate]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/HandleFormItem.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index 6ec2b33..21e4c97 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -17,7 +17,7 @@ @input="onInputChange" @change="onInputChange" /> + :placeholder="getPlaceholder()" @visible-change="onSelectBlur" @change="onInputChange"> @@ -167,6 +167,11 @@ export default { // this.$emit('input', val); // this.$emit('change', val); }, + onSelectBlur(visible) { + if (!visible) { + this.onCommonHandleSaveRecord(this.inputValue); + } + }, // 统一处理输入变化 onInputChange(val) { const value = val !== undefined ? val : this.inputValue;