mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let formatted = this.filter(value);
|
let formatted = this.format(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)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.emitChange(formatted);
|
this.emitChange(formatted);
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user