This commit is contained in:
zhaofang
2022-07-21 15:49:59 +08:00
parent c61b435b6a
commit b4f83b1795
9 changed files with 11 additions and 12 deletions

View File

@@ -567,7 +567,7 @@ export default {
},
getDetail() {
let $this = this;
apiCoursePortal.detail(this.id).then(rs => {
apiCoursePortal.detail(this.id,true).then(rs => {
if (rs.status == 200) {
this.courseInfo = rs.result.course;
this.teacherList = rs.result.teachers;

View File

@@ -607,7 +607,7 @@ export default {
this.courseInfo.coverImg = "";
},
getDetail() {
apiCoursePortal.detail(this.id).then(rs => {
apiCoursePortal.detail(this.id,true).then(rs => {
if (rs.status == 200) {
this.courseInfo = rs.result.course;
if(rs.result.course.coverImg !== '') {

View File

@@ -443,7 +443,7 @@ export default {
}
},
getDetail() {
apiCoursePortal.detail(this.manageStudyData.id).then(rs => {
apiCoursePortal.detail(this.manageStudyData.id,true).then(rs => {
if (rs.status == 200) {
let treeList = [];
if (rs.result.sections.length > 0) {
@@ -523,7 +523,7 @@ export default {
});
},
getRecordDetail(id) {
apiCoursePortal.detail(id).then(rs => {
apiCoursePortal.detail(id,true).then(rs => {
if (rs.status == 200) {
let treeList = [];
if (rs.result.sections.length > 0) {