From e6e6ca2fb1135c9febb07c45db86d2c4fc73bd28 Mon Sep 17 00:00:00 2001 From: zhaofang <752743406@qq.com> Date: Sat, 29 Oct 2022 14:01:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Portal/noteComment.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Portal/noteComment.vue b/src/components/Portal/noteComment.vue index 71df9c84..ae75b1e5 100644 --- a/src/components/Portal/noteComment.vue +++ b/src/components/Portal/noteComment.vue @@ -371,7 +371,7 @@ if(res.status == 200 && res.result.list.length > 0) { let ids = []; res.result.list.forEach(it=>{ - ids.push(item.sysCreateAid); + ids.push(it.sysCreateAid); it.replyList = []; it.avatar=''; it.orgInfo=''; @@ -380,6 +380,7 @@ }) // let ids = res.result.list.map(item=>item.sysCreateAid); const noReapetIds=[...new Set(ids)] + console.log(noReapetIds,'noReapetIds'); this.loadAuthorInfo(res.result.list,noReapetIds); item.replyList.push(...res.result.list); }