BUG 29560

This commit is contained in:
aixianling
2022-05-10 09:36:35 +08:00
parent 9b35506181
commit 92890111ee

View File

@@ -293,12 +293,7 @@ export default {
}, },
}).then((res) => { }).then((res) => {
if (res?.data) { if (res?.data) {
this.tableData = res.data.records.map(v => { this.tableData = res.data.records;
return {
...v,
girdMemberNames: v.girdMemberNames ? v.girdMemberNames.split(',') : []
}
});
this.page.total = res.data.total; this.page.total = res.data.total;
} }
}); });