去掉游戏数学代码中的console

This commit is contained in:
sk1551 2020-11-05 09:18:45 +08:00
parent 0c22bbf592
commit d90fa8a860
3 changed files with 0 additions and 7 deletions

View File

@ -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));

View File

@ -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;
});

View File

@ -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);
},
},