mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Merge pull request #5326 from johnsonwong666/hotfix/fix_issue_5295
fix(stepper): fix decimal compare
This commit is contained in:
commit
2f80362b7b
@ -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