From 205bf5469feb8ec33c508ddf5abda03feae64f10 Mon Sep 17 00:00:00 2001 From: "dong.ai" Date: Sun, 14 Sep 2025 19:08:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Index.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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; }) },