From 92890111eeeacff092322ab8a3f09f9472871184 Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 10 May 2022 09:36:35 +0800 Subject: [PATCH] BUG 29560 --- project/sass/apps/grid/AppGridBlock/components/list.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/project/sass/apps/grid/AppGridBlock/components/list.vue b/project/sass/apps/grid/AppGridBlock/components/list.vue index 62378d11..775cfce8 100644 --- a/project/sass/apps/grid/AppGridBlock/components/list.vue +++ b/project/sass/apps/grid/AppGridBlock/components/list.vue @@ -293,12 +293,7 @@ export default { }, }).then((res) => { if (res?.data) { - this.tableData = res.data.records.map(v => { - return { - ...v, - girdMemberNames: v.girdMemberNames ? v.girdMemberNames.split(',') : [] - } - }); + this.tableData = res.data.records; this.page.total = res.data.total; } });