From 88bd66c78ef3881f2e168c60570ef16b16f66758 Mon Sep 17 00:00:00 2001 From: johnsonwong666 <1067100250@qq.com> Date: Wed, 12 Apr 2023 17:54:00 +0800 Subject: [PATCH] fix(stepper): fix decimal compare --- packages/stepper/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/stepper/index.ts b/packages/stepper/index.ts index 5a10b9c9..246ed483 100644 --- a/packages/stepper/index.ts +++ b/packages/stepper/index.ts @@ -103,10 +103,10 @@ VantComponent({ this.data; if (type === 'plus') { - return disabled || disablePlus || currentValue >= max; + return disabled || disablePlus || +currentValue >= +max; } - return disabled || disableMinus || currentValue <= min; + return disabled || disableMinus || +currentValue <= +min; }, onFocus(event: WechatMiniprogram.InputFocus) {