|
@@ -217,17 +217,18 @@ export default {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
this.tableLoading = true;
|
|
this.tableLoading = true;
|
|
|
|
+ var params = JSON.parse(JSON.stringify(this.form));
|
|
this.$http
|
|
this.$http
|
|
- .post("/api/ecs_oe_admin/exam/record/detail/list", this.form)
|
|
|
|
|
|
+ .post("/api/ecs_oe_admin/exam/record/detail/list", params)
|
|
.then(response => {
|
|
.then(response => {
|
|
if (response.data) {
|
|
if (response.data) {
|
|
this.tableData = response.data.content;
|
|
this.tableData = response.data.content;
|
|
this.total = response.data.totalElements;
|
|
this.total = response.data.totalElements;
|
|
|
|
+ this.form.pageNo = response.data.number + 1;
|
|
} else {
|
|
} else {
|
|
this.tableData = [];
|
|
this.tableData = [];
|
|
}
|
|
}
|
|
this.tableLoading = false;
|
|
this.tableLoading = false;
|
|
- var params = this.form;
|
|
|
|
this.$router.push({
|
|
this.$router.push({
|
|
path: "/oe/examDetail?" + new URLSearchParams(params)
|
|
path: "/oe/examDetail?" + new URLSearchParams(params)
|
|
});
|
|
});
|