删除无用的console

This commit is contained in:
28353131@qq.com 2020-11-28 19:03:16 +08:00
parent ba32570859
commit 5b598909f7

View File

@ -248,13 +248,11 @@
},
//
changeFoods(row) {
console.log("row-->", row);
let ret = 0;
for(let i =0 ; i < row.foods.length; i++) {
ret += this.foodList[i].price;
}
this.weekMenuList[row.id -1 ].price = ret;
},
//
@ -289,7 +287,6 @@
listFood(this.queryParams).then(response => {
this.foodList = response.rows;
this.loading = false;
console.log("foods", this.foodList);
});
},