Compare commits

..

No commits in common. "72a04ceb100b13845df069ca08e6a3570393e6cd" and "3293de18144251c573aa3f4274f6c793b645321f" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -184,9 +184,9 @@ class RouterManager {
static final _jobReportPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
int id = int.parse(params['id']![0]);
String title = params['title']![0];
int? schoolId = int.parse(params['schoolId']![0]);
int? gradeId = int.parse(params['gradeId']![0]);
String? className = params['className']![0];
int schoolId = int.parse(params['schoolId']![0]);
int gradeId = int.parse(params['gradeId']![0]);
String className = params['className']![0];
return JobReport(id: id, title: title,schoolId:schoolId,gradeId:gradeId,className:className);
});