diff --git a/packages/conv/creditScore/AppGridMemberScore/components/gridScoreStatistics.vue b/packages/conv/creditScore/AppGridMemberScore/components/gridScoreStatistics.vue index 43f6e364..d715cc5b 100644 --- a/packages/conv/creditScore/AppGridMemberScore/components/gridScoreStatistics.vue +++ b/packages/conv/creditScore/AppGridMemberScore/components/gridScoreStatistics.vue @@ -70,24 +70,25 @@ v-throttle="() => {(current = 1), getTableData();}" /> - @@ -154,10 +155,8 @@ export default { endTime: '', }, girdIdArr:[], - page: { - size: 10, - total: 0, - }, + total: 0, + size: 10, current: 1, girdList: [], time: [], @@ -250,14 +249,15 @@ export default { getTableData() { this.instance.post('/app/appintegraluser/girdIntegralDetail',null,{ params: { - ...this.page, ...this.search, - current: this.current + current: this.current, + size: this.size, + total: this.total, } }).then(res => { if(res?.data) { this.tableData = res.data.records - this.page.total = res.data.total + this.total = res.data.total } }) },