mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(circle): Fix the bug of shake when the circle component value is a decimal number. (#4152)
* fix(circle): Fix the bug of shake when the circle component value is a decimal number * fix(circle): Fix the bug of shake when the circle component value is a decimal number
This commit is contained in:
parent
9d1c8b2ca9
commit
a641b0922d
@ -185,10 +185,14 @@ VantComponent({
|
||||
this.currentValue = this.currentValue || 0;
|
||||
this.interval = setInterval(() => {
|
||||
if (this.currentValue !== value) {
|
||||
if (this.currentValue < value) {
|
||||
this.currentValue += STEP;
|
||||
if (Math.abs(this.currentValue - value) < STEP) {
|
||||
this.currentValue = value;
|
||||
} else {
|
||||
this.currentValue -= STEP;
|
||||
if (this.currentValue < value) {
|
||||
this.currentValue += STEP;
|
||||
} else {
|
||||
this.currentValue -= STEP;
|
||||
}
|
||||
}
|
||||
this.drawCircle(this.currentValue);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user