联调案例库

This commit is contained in:
GGJ
2024-09-12 20:01:17 +08:00
parent 2b22943a1e
commit fe6bae1bdc
8 changed files with 1057 additions and 55 deletions

View File

@@ -80,7 +80,7 @@ export default class TableStore {
)
).then((res: any) => {
if (res.data) {
this.table.data = res.data?.records || res.data
this.table.data = res.data.records || res.data
this.table.total = res.data?.total || res.data.length || 0
} else {
this.table.data = []