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) {