From 5b598909f7d066a5217a5ab0a6b4c703cd7d452a Mon Sep 17 00:00:00 2001 From: "28353131@qq.com" <28353131@qq.com> Date: Sat, 28 Nov 2020 19:03:16 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8=E7=9A=84co?= =?UTF-8?q?nsole?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/fantang/weekMenu/index.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/ruoyi-ui/src/views/fantang/weekMenu/index.vue b/ruoyi-ui/src/views/fantang/weekMenu/index.vue index dc9bb2307..7adabc7fb 100644 --- a/ruoyi-ui/src/views/fantang/weekMenu/index.vue +++ b/ruoyi-ui/src/views/fantang/weekMenu/index.vue @@ -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); }); },