去掉游戏数学代码中的console
This commit is contained in:
parent
0c22bbf592
commit
d90fa8a860
@ -419,7 +419,6 @@ export default {
|
|||||||
this.title = "修改游戏数学学期计划明细";
|
this.title = "修改游戏数学学期计划明细";
|
||||||
var mathconent = response.data.mathconent.split(";");
|
var mathconent = response.data.mathconent.split(";");
|
||||||
var array = [];
|
var array = [];
|
||||||
//console.log(arr);
|
|
||||||
mathconent.forEach(function (value, key, arr) {
|
mathconent.forEach(function (value, key, arr) {
|
||||||
if (value != "") {
|
if (value != "") {
|
||||||
array.push(parseInt(value));
|
array.push(parseInt(value));
|
||||||
|
@ -319,7 +319,6 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
isShow(row) {
|
isShow(row) {
|
||||||
//console.log(row.status);
|
|
||||||
if (row.status == "0") {
|
if (row.status == "0") {
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
@ -418,7 +417,6 @@ export default {
|
|||||||
this.title = "修改游戏数学学期计划";
|
this.title = "修改游戏数学学期计划";
|
||||||
const time = [];
|
const time = [];
|
||||||
time.push(response.data.startmonth);
|
time.push(response.data.startmonth);
|
||||||
console.log(response.data.startmonth);
|
|
||||||
time.push(response.data.endmonth);
|
time.push(response.data.endmonth);
|
||||||
this.form.startmonth = time;
|
this.form.startmonth = time;
|
||||||
});
|
});
|
||||||
|
@ -126,14 +126,12 @@ export default {
|
|||||||
// 获取游戏数学方案
|
// 获取游戏数学方案
|
||||||
getMathList() {
|
getMathList() {
|
||||||
listPlan(null).then((response) => {
|
listPlan(null).then((response) => {
|
||||||
console.log(response.rows);
|
|
||||||
this.mathOptions = response.rows;
|
this.mathOptions = response.rows;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//获取教学学期计划
|
//获取教学学期计划
|
||||||
getMathTermPlan(mathtermplanid) {
|
getMathTermPlan(mathtermplanid) {
|
||||||
getMathtermplan(mathtermplanid).then((response) => {
|
getMathtermplan(mathtermplanid).then((response) => {
|
||||||
// console.log(response.data);
|
|
||||||
this.title = response.data.name;
|
this.title = response.data.name;
|
||||||
this.tbr = response.createusername;
|
this.tbr = response.createusername;
|
||||||
this.classname = response.classname;
|
this.classname = response.classname;
|
||||||
@ -145,13 +143,11 @@ export default {
|
|||||||
//获取学期月份详细计划
|
//获取学期月份详细计划
|
||||||
listMathTermItemPlan() {
|
listMathTermItemPlan() {
|
||||||
listMathtermplanitem(this.queryParams).then((response) => {
|
listMathtermplanitem(this.queryParams).then((response) => {
|
||||||
console.log(response.rows);
|
|
||||||
this.bodyData.termplanitemList = response.rows;
|
this.bodyData.termplanitemList = response.rows;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
//打印
|
//打印
|
||||||
prints() {
|
prints() {
|
||||||
//console.log(this.$refs.printMe);
|
|
||||||
this.$print(this.$refs.printMe);
|
this.$print(this.$refs.printMe);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user