|
@@ -831,7 +831,7 @@ export default {
|
|
|
oid: this.$route.query.oid,
|
|
|
org: this.$route.query.org,
|
|
|
uid2: this.uid,
|
|
|
- worksDialogCon2: this.worksDialogCon,
|
|
|
+ worksDialogCon2: JSON.parse(JSON.stringify(this.worksDialogCon)),
|
|
|
courseName: "",
|
|
|
loading: false,
|
|
|
tableData: [],
|
|
@@ -905,10 +905,10 @@ export default {
|
|
|
|
|
|
delete valT.content;
|
|
|
delete valT.comment;
|
|
|
- console.log("valT", JSON.parse(JSON.stringify(val)));
|
|
|
+ // console.log("valT", JSON.parse(JSON.stringify(val)));
|
|
|
|
|
|
let data = Object.values(valT);
|
|
|
- console.log("data", JSON.parse(JSON.stringify(data)));
|
|
|
+ // console.log("data", JSON.parse(JSON.stringify(data)));
|
|
|
|
|
|
let new1 = data.reduce(function(pre, next, index) {
|
|
|
return pre + next * 1;
|
|
@@ -930,7 +930,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- console.log("TimeList", TimeList);
|
|
|
+ // console.log("TimeList", TimeList);
|
|
|
TimeList.sort(function(a, b) {
|
|
|
return a - b; //从小到大排序
|
|
|
});
|
|
@@ -1058,7 +1058,7 @@ export default {
|
|
|
let framework = [];
|
|
|
if (res.data[0].length) {
|
|
|
let elistData = JSON.parse(res.data[0][0].chapters);
|
|
|
- console.log("elistData", JSON.parse(JSON.stringify(elistData)));
|
|
|
+ // console.log("elistData", JSON.parse(JSON.stringify(elistData)));
|
|
|
|
|
|
elistData.forEach((e, i) => {
|
|
|
framework[i] = {
|
|
@@ -1267,7 +1267,7 @@ export default {
|
|
|
});
|
|
|
});
|
|
|
|
|
|
- console.log("framework", JSON.parse(JSON.stringify(framework)));
|
|
|
+ // console.log("framework", JSON.parse(JSON.stringify(framework)));
|
|
|
|
|
|
this.Kloading = false;
|
|
|
|