戴艳蓉 3 anni fa
parent
commit
34a8775ce5

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/css/app.83ccaec4.css


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/app.331ec44d.js


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


File diff suppressed because it is too large
+ 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() {
     jian() {
       this.leix();
       this.leix();
       if (this.num > 0) {
       if (this.num > 0) {
-        this.num--;
+        this.num-=2;
         this.$emit("backNum", this.num);
         this.$emit("backNum", this.num);
       }
       }
     },
     },
@@ -63,7 +63,7 @@ export default {
       this.leix();
       this.leix();
       this.num = parseInt(this.num);
       this.num = parseInt(this.num);
       if (this.num < this.max) {
       if (this.num < this.max) {
-        this.num++;
+        this.num+=2;
         this.$emit("backNum", this.num);
         this.$emit("backNum", this.num);
       }
       }
     },
     },

Some files were not shown because too many files changed in this diff