fix(van-stepper): fix onChange event exceeded 'max' after setting the max prop (#5741)

This commit is contained in:
Lick-liu 2024-04-12 17:40:56 +08:00 committed by GitHub
parent 50da9f87eb
commit 348c3103b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -161,13 +161,7 @@ VantComponent({
return;
}
let formatted = this.filter(value);
// limit max decimal length
if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
const pair = formatted.split('.');
formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
}
let formatted = this.format(value);
this.emitChange(formatted);
},