|
@@ -77,7 +77,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
courseid: this.$route.query.courseid,
|
|
|
- oid: this.$route.query.oid,
|
|
|
+ oid: '',
|
|
|
courseDetail: {},
|
|
|
chapInfo: {},
|
|
|
chapList: [],
|
|
@@ -114,6 +114,7 @@ export default {
|
|
|
this.courseDetail = res[0][0]
|
|
|
this.chapInfo = JSON.parse(this.courseDetail.chapters)[this.courseType]
|
|
|
this.chapList = JSON.parse(this.courseDetail.chapters)
|
|
|
+ this.oid = res[0][0].organizeid
|
|
|
this.tcid = this.arrayToArray(
|
|
|
this.courseDetail.juri ? this.courseDetail.juri.split(',') : [],
|
|
|
this.tcid2 ? this.tcid2.split(',') : []
|