diff --git a/src/views/Index.vue b/src/views/Index.vue index 9c1dfa7c..43266fed 100644 --- a/src/views/Index.vue +++ b/src/views/Index.vue @@ -1562,7 +1562,19 @@ export default { aid: this.userInfo.aid, } apiIndex.qualitylist(course).then((res) => { - console.log(res,'jinpinsjfhhfjash--------------------------'); + let courseIds = []; + res.data.result.forEach((item) => { + item.authorInfo = { + aid: "", + name: "", + orgInfo: "", + avatar: "", + code: "", + sex: null, + }; + courseIds.push(item.courseId); + }); + this.loadCouserTeacher(res.data.result, courseIds); this.qusisityList.list = res.data.result; }) },