This commit is contained in:
zhy
2025-10-08 19:26:03 +08:00
parent fab258f8a3
commit d12c6c072c
2 changed files with 3 additions and 2 deletions

View File

@@ -253,7 +253,7 @@ export default {
let sdata = { ...this.queryParams };
sdata.pageNum = null;
sdata.pageSize = null;
this.download('survey/itinerary/xwExport', {
this.download('survey/itinerary/fdyExport', {
...sdata
}, `学生假期离校返校填写记录_${new Date().getTime()}.xlsx`)
},

View File

@@ -265,7 +265,8 @@ export default {
let res = await listFdyStuReturn(this.lookParams);
loading.close();
if (res.code == 200) {
this.lookList = [...res.data];
this.lookList = [...res.rows];
this.lookTotal = res.total;
}
},
async listAllSurvey() {