diff --git a/anrui-system-ui/src/views/flow/doneList.vue b/anrui-system-ui/src/views/flow/doneList.vue index d35f02ec09..73fbceee2d 100644 --- a/anrui-system-ui/src/views/flow/doneList.vue +++ b/anrui-system-ui/src/views/flow/doneList.vue @@ -12,6 +12,9 @@ + + + @@ -23,7 +26,7 @@
已办任务列表
- +
@@ -81,7 +84,7 @@
- +
{ + getList(this.listQuery).then((rep) => { this.listLoading = false - this.list = rep.data.records - this.total = rep.data.total + if (rep.success) { + this.list = rep.data.records + this.listQuery.total = rep.data.total + } else { + this.list = [] + this.listQuery.total = 0 + } }) }, handleFilter() { - this.listQuery.pageNumber = 1 + this.listQuery.current = 1 this.getList() }, handleSelectionChange() { diff --git a/anrui-system-ui/src/views/flow/todoList.vue b/anrui-system-ui/src/views/flow/todoList.vue index ebf37a9975..2c5cd31c36 100644 --- a/anrui-system-ui/src/views/flow/todoList.vue +++ b/anrui-system-ui/src/views/flow/todoList.vue @@ -12,6 +12,9 @@ + + + @@ -195,7 +198,8 @@ export default { proDefName: '', startDate: '', endDate: '', - userSid: '' + userSid: '', + startUserName: '' } } } @@ -511,7 +515,7 @@ export default { }) }, handleFilter() { - this.listQuery.pageNumber = 1 + this.listQuery.current = 1 this.getList() }, handleSelectionChange() {