kz-ui-base 1.0.31 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1550,7 +1550,7 @@ export default class listBasePage extends Vue {
|
|
|
1550
1550
|
this.listSetting.getListAction
|
|
1551
1551
|
).then((response) => {
|
|
1552
1552
|
this.listData = (response as any).rows;
|
|
1553
|
-
this.listQueryParams.total = Number(response.total);
|
|
1553
|
+
this.listQueryParams.total = Number((response as any).total);
|
|
1554
1554
|
this.loading = false;
|
|
1555
1555
|
});
|
|
1556
1556
|
})
|
|
@@ -1839,7 +1839,7 @@ export default class listBasePage extends Vue {
|
|
|
1839
1839
|
.then((response) => {
|
|
1840
1840
|
this.listData = (response as any).rows;
|
|
1841
1841
|
|
|
1842
|
-
this.listQueryParams.total = Number(response.total);
|
|
1842
|
+
this.listQueryParams.total = Number((response as any).total);
|
|
1843
1843
|
this.loading = false;
|
|
1844
1844
|
})
|
|
1845
1845
|
.catch(() => {
|