From d97d88ed9257fb7977d0b6e967a09c89eac3324d Mon Sep 17 00:00:00 2001 From: DongYao Date: Mon, 27 Oct 2025 23:43:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=84=A6=E7=82=B9=E7=A6=BB?= =?UTF-8?q?=E5=BC=80=E5=90=8E=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=95=B0=E5=AD=97?= =?UTF-8?q?=E4=B8=8D=E5=BA=94=E7=94=A8=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/uni-number-box/uni-number-box.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue b/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue index dd46e265..7e3376af 100644 --- a/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue +++ b/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue @@ -143,7 +143,7 @@ }, _onBlur(event) { this.$emit('blur', event) - let value = event.detail.value; + let value = event.target.value; if (isNaN(value)) { this.inputValue = this.value; return; @@ -230,3 +230,4 @@ /* #endif */ } +