BUG 29560

This commit is contained in:
aixianling
2022-05-10 09:36:35 +08:00
parent 3dd57db73b
commit e8c8c1cba6

View File

@@ -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;
}
});