Compare commits
No commits in common. "72a04ceb100b13845df069ca08e6a3570393e6cd" and "3293de18144251c573aa3f4274f6c793b645321f" have entirely different histories.
72a04ceb10
...
3293de1814
|
|
@ -184,9 +184,9 @@ class RouterManager {
|
||||||
static final _jobReportPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
|
static final _jobReportPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
|
||||||
int id = int.parse(params['id']![0]);
|
int id = int.parse(params['id']![0]);
|
||||||
String title = params['title']![0];
|
String title = params['title']![0];
|
||||||
int? schoolId = int.parse(params['schoolId']![0]);
|
int schoolId = int.parse(params['schoolId']![0]);
|
||||||
int? gradeId = int.parse(params['gradeId']![0]);
|
int gradeId = int.parse(params['gradeId']![0]);
|
||||||
String? className = params['className']![0];
|
String className = params['className']![0];
|
||||||
return JobReport(id: id, title: title,schoolId:schoolId,gradeId:gradeId,className:className);
|
return JobReport(id: id, title: title,schoolId:schoolId,gradeId:gradeId,className:className);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue