chore: fix bug

This commit is contained in:
禾几海
2021-03-12 17:55:00 +08:00
parent 03cf88868e
commit 754193d6ab
4 changed files with 8 additions and 8 deletions

View File

@@ -72,7 +72,7 @@ export class CommonTableComponent<T> implements OnInit, OnChanges {
// count: countValue
// }
this.pageInfo.emit({page: pageValue, pageSize: countValue});
return this.httpService.Service<PageList<T>>(this.request).subscribe({
return this.httpService.service<PageList<T>>(this.request).subscribe({
next: resp => {
this.dataList = resp.result;
setTimeout(() => this.loading = false, 10);