diff --git a/src/views/app/business/deposit/deposit.vue b/src/views/app/business/deposit/deposit.vue index 291e68c..0188e5e 100644 --- a/src/views/app/business/deposit/deposit.vue +++ b/src/views/app/business/deposit/deposit.vue @@ -109,7 +109,7 @@ getJiangLiList(){ JiangLiList(this.searchForm).then((res) => { if (res.success) { - this.data = res.result + this.data = res.result.records this.total = res.result.total; if (this.data.length == 0 && this.searchForm.pageNum > 1) { this.searchForm.pageNum -= 1; diff --git a/src/views/app/business/problemFeedback/problemFeedback.vue b/src/views/app/business/problemFeedback/problemFeedback.vue index 47fd098..bd6136a 100644 --- a/src/views/app/business/problemFeedback/problemFeedback.vue +++ b/src/views/app/business/problemFeedback/problemFeedback.vue @@ -105,7 +105,7 @@ getJiangLiList(){ JiangLiList(this.searchForm).then((res) => { if (res.success) { - this.data = res.result + this.data = res.result.records this.total = res.result.total; if (this.data.length == 0 && this.searchForm.pageNum > 1) { this.searchForm.pageNum -= 1;