戴艳蓉 3 년 전
부모
커밋
34a8775ce5

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/css/app.83ccaec4.css


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.331ec44d.js


BIN
dist/static/js/app.331ec44d.js.gz


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.da70d951.js


BIN
dist/static/js/app.da70d951.js.gz


+ 2 - 2
src/components/inputNumber.vue

@@ -55,7 +55,7 @@ export default {
     jian() {
       this.leix();
       if (this.num > 0) {
-        this.num--;
+        this.num-=2;
         this.$emit("backNum", this.num);
       }
     },
@@ -63,7 +63,7 @@ export default {
       this.leix();
       this.num = parseInt(this.num);
       if (this.num < this.max) {
-        this.num++;
+        this.num+=2;
         this.$emit("backNum", this.num);
       }
     },

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.