diff --git a/src/views/report/Employeelearning.vue b/src/views/report/Employeelearning.vue index d733ebb8..ae573c18 100644 --- a/src/views/report/Employeelearning.vue +++ b/src/views/report/Employeelearning.vue @@ -412,8 +412,8 @@ export default { state.name = ""; state.band = ""; state.userNo = ""; - state.valueBand = ""; - state.valueCourseType = ""; + state.valueBand = null; + state.valueCourseType = null; state.orgId = state.resetOrgId; getTableData(); }; diff --git a/src/views/report/ReportExamination.vue b/src/views/report/ReportExamination.vue index 412f49f5..efd4d520 100644 --- a/src/views/report/ReportExamination.vue +++ b/src/views/report/ReportExamination.vue @@ -423,11 +423,11 @@ export default { size: state.pageSize, // userNo: state.userNo, testName: state.testName, - creator: state.creator, + createName: state.creator, startTime: typeof state.publishTime[0] === 'undefined' ? null : state.publishTime[0]+ " 00:00:00", endTime: typeof state.publishTime[0] === 'undefined' ? null : state.publishTime[1]+ " 23:59:59", // name: state.name, - departmentId: state.orgId ? state.orgId[state.orgId.length - 1] : null, + orgId: state.orgId ? state.orgId[state.orgId.length - 1] : null, // bandCode: state.band, }); if (res) { @@ -464,10 +464,10 @@ export default { // userNo: state.userNo, // name: state.name, testName: state.testName, - creator: state.creator, + createName: state.creator, startTime: typeof state.publishTime[0] === 'undefined' ? null : state.publishTime[0]+ " 00:00:00", endTime: typeof state.publishTime[0] === 'undefined' ? null : state.publishTime[1]+ " 23:59:59", - departmentId: state.orgId ? state.orgId[state.orgId.length - 1] : null, + orgId: state.orgId ? state.orgId[state.orgId.length - 1] : null, // bandCode: state.band, }, responseType: "blob",