mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(stepper): fix decimal compare
This commit is contained in:
parent
588ba18b75
commit
88bd66c78e
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user