修正代码风格

pull/2035/head
丁文涛 2016-12-28 13:07:43 +08:00
parent c549a89f50
commit d74cb25205
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@
if (this.maxDisabled) return;
const value = this.value || 0;
if (this.accAdd(value, this.step) > this.max || this.disabled) return;
this.currentValue = this.accAdd(this.step, value);
this.currentValue = this.accAdd(value, this.step);
},
decrease() {
if (this.minDisabled) return;