mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
fix(van-stepper): fix onChange event exceeded 'max' after setting the max prop (#5741)
This commit is contained in:
parent
50da9f87eb
commit
348c3103b7
@ -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);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user