mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(stepper): fix decimal compare
This commit is contained in:
parent
588ba18b75
commit
88bd66c78e
@ -103,10 +103,10 @@ VantComponent({
|
|||||||
this.data;
|
this.data;
|
||||||
|
|
||||||
if (type === 'plus') {
|
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) {
|
onFocus(event: WechatMiniprogram.InputFocus) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user