From be95951f400e6471a7ffda1d95eb7988db32b32e Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 25 Feb 2025 16:58:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=9D=A5=E6=BA=90=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/components/Retrospect.vue | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/views/system/user/components/Retrospect.vue b/src/views/system/user/components/Retrospect.vue index 09426651..43628c0c 100644 --- a/src/views/system/user/components/Retrospect.vue +++ b/src/views/system/user/components/Retrospect.vue @@ -299,11 +299,10 @@ export default { let res = await getUserJoinedTrialList(this.searchData) if (res.IsSuccess) { this.loading = false - res.OtherInfo = res.OtherInfo - ? res.OtherInfo - : Object.keys(this.otherInfo).forEach((key) => { - this.otherInfo[key] = res.OtherInfo[key] - }) + res.OtherInfo = res.OtherInfo ? res.OtherInfo : {} + Object.keys(this.otherInfo).forEach((key) => { + this.otherInfo[key] = res.OtherInfo[key] + }) this.list = res.Result.CurrentPageData this.total = res.Result.TotalCount }