diff --git a/jero-web/src/views/otamanagement/upgradeactivityrecord/components/historicalrecord.vue b/jero-web/src/views/otamanagement/upgradeactivityrecord/components/historicalrecord.vue index e5eda6a0d..2eebdeb15 100644 --- a/jero-web/src/views/otamanagement/upgradeactivityrecord/components/historicalrecord.vue +++ b/jero-web/src/views/otamanagement/upgradeactivityrecord/components/historicalrecord.vue @@ -51,9 +51,9 @@ otaId:localStorage.getItem('otaId') } this.loading = true - getAction('ota/otaBaSjLsjl/list', query).then((res) => { + getAction('ota/otaBaSjLsjl/page', query).then((res) => { if (res.success) { - this.dataSource = res.result || [] + this.dataSource = res.result.records || [] this.loading = false } else { this.loading = false diff --git a/jero-web/src/views/otamanagement/vehicleinformation/components/historicalrecord.vue b/jero-web/src/views/otamanagement/vehicleinformation/components/historicalrecord.vue index 85d878981..c19eb0d49 100644 --- a/jero-web/src/views/otamanagement/vehicleinformation/components/historicalrecord.vue +++ b/jero-web/src/views/otamanagement/vehicleinformation/components/historicalrecord.vue @@ -51,9 +51,9 @@ otaId:localStorage.getItem('otaId') } this.loading = true - getAction('ota/otaBaCxLsjl/list', query).then((res) => { + getAction('ota/otaBaCxLsjl/page', query).then((res) => { if (res.success) { - this.dataSource = res.result || [] + this.dataSource = res.result.records || [] this.loading = false } else { this.loading = false