|
@@ -10116,8 +10116,8 @@ export default {
|
|
|
let params = [
|
|
|
{
|
|
|
uid: this.userid,
|
|
|
- title: this.courseName.replace(/%/g, "%25"),
|
|
|
- brief: this.courseText.replace(/%/g, "%25"),
|
|
|
+ title: this.courseName,
|
|
|
+ brief: this.courseText,
|
|
|
cover:
|
|
|
this.cover.length > 0
|
|
|
? JSON.stringify(this.cover)
|
|
@@ -10133,7 +10133,7 @@ export default {
|
|
|
astudent:
|
|
|
this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
|
|
|
see: this.isTeacherSee == true ? 1 : 0,
|
|
|
- chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
|
|
|
+ chapters: JSON.stringify(this.unitJson),
|
|
|
template: this.cTemplate != "undefined" ? this.cTemplate : "",
|
|
|
courseType: JSON.stringify(this.courseTypeId),
|
|
|
ateacher:
|
|
@@ -10353,8 +10353,8 @@ export default {
|
|
|
let params = [
|
|
|
{
|
|
|
cid: this.cid,
|
|
|
- title: this.courseName.replace(/%/g, "%25"),
|
|
|
- brief: this.courseText.replace(/%/g, "%25"),
|
|
|
+ title: this.courseName,
|
|
|
+ brief: this.courseText,
|
|
|
cover:
|
|
|
this.cover.length > 0
|
|
|
? JSON.stringify(this.cover)
|
|
@@ -10370,7 +10370,7 @@ export default {
|
|
|
astudent:
|
|
|
this.checkboxList2.length > 0 ? this.checkboxList2.join(",") : "",
|
|
|
see: this.isTeacherSee == true ? 1 : 0,
|
|
|
- chapters: JSON.stringify(this.unitJson).replaceAll(/%/g, "%25"),
|
|
|
+ chapters: JSON.stringify(this.unitJson),
|
|
|
template: this.myWord != "undefined" ? this.myWord : [],
|
|
|
uid: this.userid,
|
|
|
courseType: JSON.stringify(this.courseTypeId),
|