From d90fa8a860fe0ba9dc397caacbcf8eb3e4185829 Mon Sep 17 00:00:00 2001 From: sk1551 <15175617877@163.com> Date: Thu, 5 Nov 2020 09:18:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E6=B8=B8=E6=88=8F=E6=95=B0?= =?UTF-8?q?=E5=AD=A6=E4=BB=A3=E7=A0=81=E4=B8=AD=E7=9A=84console?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/benyi/mathtermplan/data.vue | 1 - ruoyi-ui/src/views/benyi/mathtermplan/index.vue | 2 -- ruoyi-ui/src/views/benyi/mathtermplan/table.vue | 4 ---- 3 files changed, 7 deletions(-) diff --git a/ruoyi-ui/src/views/benyi/mathtermplan/data.vue b/ruoyi-ui/src/views/benyi/mathtermplan/data.vue index 65c8e9a61..1e9e1a924 100644 --- a/ruoyi-ui/src/views/benyi/mathtermplan/data.vue +++ b/ruoyi-ui/src/views/benyi/mathtermplan/data.vue @@ -419,7 +419,6 @@ export default { this.title = "修改游戏数学学期计划明细"; var mathconent = response.data.mathconent.split(";"); var array = []; - //console.log(arr); mathconent.forEach(function (value, key, arr) { if (value != "") { array.push(parseInt(value)); diff --git a/ruoyi-ui/src/views/benyi/mathtermplan/index.vue b/ruoyi-ui/src/views/benyi/mathtermplan/index.vue index 65c19c342..24bf9ce8d 100644 --- a/ruoyi-ui/src/views/benyi/mathtermplan/index.vue +++ b/ruoyi-ui/src/views/benyi/mathtermplan/index.vue @@ -319,7 +319,6 @@ export default { }, methods: { isShow(row) { - //console.log(row.status); if (row.status == "0") { return true; } else { @@ -418,7 +417,6 @@ export default { this.title = "修改游戏数学学期计划"; const time = []; time.push(response.data.startmonth); - console.log(response.data.startmonth); time.push(response.data.endmonth); this.form.startmonth = time; }); diff --git a/ruoyi-ui/src/views/benyi/mathtermplan/table.vue b/ruoyi-ui/src/views/benyi/mathtermplan/table.vue index 0bbacee04..de81abcd1 100644 --- a/ruoyi-ui/src/views/benyi/mathtermplan/table.vue +++ b/ruoyi-ui/src/views/benyi/mathtermplan/table.vue @@ -126,14 +126,12 @@ export default { // 获取游戏数学方案 getMathList() { listPlan(null).then((response) => { - console.log(response.rows); this.mathOptions = response.rows; }); }, //获取教学学期计划 getMathTermPlan(mathtermplanid) { getMathtermplan(mathtermplanid).then((response) => { - // console.log(response.data); this.title = response.data.name; this.tbr = response.createusername; this.classname = response.classname; @@ -145,13 +143,11 @@ export default { //获取学期月份详细计划 listMathTermItemPlan() { listMathtermplanitem(this.queryParams).then((response) => { - console.log(response.rows); this.bodyData.termplanitemList = response.rows; }); }, //打印 prints() { - //console.log(this.$refs.printMe); this.$print(this.$refs.printMe); }, },