|
@@ -124,8 +124,13 @@ export default {
|
|
|
if (!res.flag) {
|
|
|
this.$notification.error({ message: res.message });
|
|
|
} else {
|
|
|
- _this.loginManagentData = res.data.data || [];
|
|
|
- _this.pagination.total = res.data.total !== null && res.data.total !== undefined ? res.data.total : 0;
|
|
|
+ if (res.data && res.data.data) {
|
|
|
+ _this.loginManagentData = res.data.data
|
|
|
+ _this.pagination.total = res.data.total;
|
|
|
+ }else {
|
|
|
+ _this.loginManagentData = [];
|
|
|
+ _this.pagination.total = 0
|
|
|
+ }
|
|
|
_this.each(_this.loginManagentData);
|
|
|
}
|
|
|
})
|