mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-17 23:06:45 +08:00
教师展示
This commit is contained in:
@@ -212,7 +212,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="course-author">
|
<div class="course-author">
|
||||||
<div class="course-author-left">
|
<div class="course-author-left">
|
||||||
{{ course.teacherName }}
|
{{ course.authorInfo.name }}
|
||||||
|
|
||||||
<span class="study-num"
|
<span class="study-num"
|
||||||
>{{ formatNum(course.studyNum) }}人学习</span
|
>{{ formatNum(course.studyNum) }}人学习</span
|
||||||
@@ -1568,7 +1568,20 @@ export default {
|
|||||||
aid: this.userInfo.aid,
|
aid: this.userInfo.aid,
|
||||||
}
|
}
|
||||||
apiIndex.qualitylist(course).then((res) => {
|
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.id);
|
||||||
|
});
|
||||||
|
this.loadCouserTeacher(res.data.result, courseIds);
|
||||||
|
console.log(res.data.result,'--------------------------');
|
||||||
this.qusisityList.list = res.data.result;
|
this.qusisityList.list = res.data.result;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user