diff --git a/jshERP-web/src/views/report/AccountReport.vue b/jshERP-web/src/views/report/AccountReport.vue index 2d6a8844..a753465c 100644 --- a/jshERP-web/src/views/report/AccountReport.vue +++ b/jshERP-web/src/views/report/AccountReport.vue @@ -9,12 +9,12 @@ - + - + @@ -98,10 +98,8 @@ }, // 查询条件 queryParam: { - search: { - name:'', - serialNo:'' - } + name:'', + serialNo:'' }, ipagination:{ pageSize: 11, @@ -128,7 +126,7 @@ { title: '当前余额', dataIndex: 'currentAmount', sorter: (a, b) => a.currentAmount - b.currentAmount, width: 100} ], url: { - list: "/account/list", + list: "/account/listWithBalance", getStatistics: "/account/getStatistics" } } @@ -145,7 +143,7 @@ return param; }, getAccountStatistics() { - getAction(this.url.getStatistics, this.queryParam.search).then((res)=>{ + getAction(this.url.getStatistics, this.queryParam).then((res)=>{ if(res && res.code === 200) { if(res.data){ this.allMonthAmount = res.data.allMonthAmount