Commit c968525d authored by baiyaaaaa's avatar baiyaaaaa Committed by GitHub

Merge pull request #2035 from DingWentao1234/hotfix/fix-code-style

修正代码风格
parents c549a89f d74cb252
...@@ -183,7 +183,7 @@ ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment