diff --git a/src/views/base/config/index.vue b/src/views/base/config/index.vue index 27a97ff..f65a2e5 100644 --- a/src/views/base/config/index.vue +++ b/src/views/base/config/index.vue @@ -159,8 +159,8 @@ export default { getList() { this.loading = true; listConfig(this.queryParams).then(response => { - this.configList = response.rows; - this.total = response.total; + this.configList = response.data.records; + this.total = response.data.total; this.loading = false; }); },