|
@@ -307,13 +307,14 @@ export default {
|
|
|
return false;
|
|
|
}
|
|
|
this.tableLoading = true;
|
|
|
- var params = this.form;
|
|
|
+ var params = JSON.parse(JSON.stringify(this.form));
|
|
|
this.$http
|
|
|
- .post("/api/ecs_oe_admin/exam/record/waiting/audit/list", this.form)
|
|
|
+ .post("/api/ecs_oe_admin/exam/record/waiting/audit/list", params)
|
|
|
.then(response => {
|
|
|
if (response.data) {
|
|
|
this.tableData = response.data.content;
|
|
|
this.total = response.data.totalElements;
|
|
|
+ this.form.pageNo = response.data.number + 1;
|
|
|
} else {
|
|
|
this.tableData = [];
|
|
|
}
|
|
@@ -340,6 +341,7 @@ export default {
|
|
|
* 当前页改变时触发
|
|
|
*/
|
|
|
handleCurrentChange(val) {
|
|
|
+ debugger;
|
|
|
this.form.pageNo = val;
|
|
|
this.search();
|
|
|
},
|