YY 2 éve
szülő
commit
04e80780e5

+ 0 - 2
src/components/orderParts/deliver/card-2.vue

@@ -220,7 +220,6 @@ export default {
       data.id = moment(new Date()).valueOf();
       let info = this.goodsList.find((f) => f.id == data.id);
       if (info == '' || info == undefined) this.goodsList.push(data);
-      console.log(this.goodsList);
       this.toClose();
     },
     onstatus(status) {
@@ -306,7 +305,6 @@ export default {
         var form = this.form;
         var res;
         form.status = val;
-        console.log(form);
         if (form._id) res = await this.update(form);
         if (this.$checkRes(res)) {
           this.$message({ type: `success`, message: `维护信息成功` });

+ 0 - 2
src/components/orderParts/detail/parts/card-2.vue

@@ -220,7 +220,6 @@ export default {
       data.id = moment(new Date()).valueOf();
       let info = this.goodsList.find((f) => f.id == data.id);
       if (info == '' || info == undefined) this.goodsList.push(data);
-      console.log(this.goodsList);
       this.toClose();
     },
     onstatus(status) {
@@ -306,7 +305,6 @@ export default {
         var form = this.form;
         var res;
         form.status = val;
-        console.log(form);
         if (form._id) res = await this.update(form);
         if (this.$checkRes(res)) {
           this.$message({ type: `success`, message: `维护信息成功` });

+ 0 - 1
src/components/orderParts/parts/detail-2.vue

@@ -88,7 +88,6 @@ export default {
                 }
               }
               info.push(...p2.goods);
-              console.log(info);
               for (const p5 of info) {
                 if (p5.gift && p5.gift.length != 0) {
                   for (const p6 of p5.gift) {

+ 0 - 2
src/components/usual/c-table.vue

@@ -183,7 +183,6 @@ export default {
     },
     handleSelectAll(selection) {
       //处于没全选状态,选择之后一定是全选,只有处于全选状态时,才会反选(全取消)
-      // console.log(selection);
       let res = [];
       if (selection.length > 0) {
         //全选
@@ -266,7 +265,6 @@ export default {
     },
     // 合计计算
     totalComputed(data) {
-      console.log(data);
       const total = data.reduce((p, n) => p + parseFloat(n), 0);
       return total;
     },

+ 0 - 2
src/components/usual/c-upload.vue

@@ -81,9 +81,7 @@ export default {
     },
     // 删除图片
     onRemove(file, fileList) {
-      console.log(file);
       let list = _.cloneDeep(this.list);
-      console.log(list);
       list = list.filter((f) => f.uri !== _.get(file, 'uri'));
       this.$emit('change', list);
       return true;

+ 0 - 1
src/views/selfShop/goodsSet/detail.vue

@@ -216,7 +216,6 @@ export default {
     // 保存
     async toSave({ data }) {
       if (data.set.length > 0) {
-        console.log(data);
         let res;
         if (data._id) res = await this.update(data);
         else res = await this.create(data);