mirror of https://github.com/ElemeFE/element
修正代码风格
parent
c549a89f50
commit
d74cb25205
|
@ -183,7 +183,7 @@
|
||||||
if (this.maxDisabled) return;
|
if (this.maxDisabled) return;
|
||||||
const value = this.value || 0;
|
const value = this.value || 0;
|
||||||
if (this.accAdd(value, this.step) > this.max || this.disabled) return;
|
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() {
|
decrease() {
|
||||||
if (this.minDisabled) return;
|
if (this.minDisabled) return;
|
||||||
|
|
Loading…
Reference in New Issue