处理了优化代码

This commit is contained in:
1147192855@qq.com 2024-02-26 22:32:31 +08:00
parent 6935ff13d4
commit d42f5febdd
14 changed files with 218 additions and 63 deletions

9
.gitignore vendored
View File

@ -187,3 +187,12 @@ marking_app/lib/pages/homework_correction/eventBus/job_notes_view_bus.g.dart
marking_app/lib/common/model/job/job_report_model.g.dart marking_app/lib/common/model/job/job_report_model.g.dart
marking_app/lib/common/model/job/job_report_join_class.g.dart marking_app/lib/common/model/job/job_report_join_class.g.dart
marking_app/lib/pages/homework_correction/job_report.g.dart marking_app/lib/pages/homework_correction/job_report.g.dart
marking_app/lib/common/model/report/detail_base_info.g.dart
marking_app/lib/common/model/report/exam_records_all.g.dart
marking_app/lib/common/model/report/exam_records_params.g.dart
marking_app/lib/common/model/report/exam_records.g.dart
marking_app/lib/common/model/report/question_know_point.g.dart
marking_app/lib/common/model/report/report_card_params.g.dart
marking_app/lib/common/model/report/report_card.g.dart
marking_app/lib/common/model/report/report_marking_detail_params.g.dart
marking_app/lib/common/model/report/report_marking_detail.g.dart

View File

@ -15,13 +15,13 @@ class RequestConfig {
static const devLoginBaseUrl = "http://192.168.2.9:6400"; // static const devLoginBaseUrl = "http://192.168.2.9:6400"; //
static const devBaseUrlOfReport = "http://192.168.2.9:4000"; // */ static const devBaseUrlOfReport = "http://192.168.2.9:4000"; // */
static const devBaseUrl = "https://mk-api.23544.com/mb-cli"; // static const devBaseUrl = "https://mk-hw.23544.com"; //
static const devLoginBaseUrl = "https://mk-api.23544.com"; // static const devLoginBaseUrl = "https://mk-hw.23544.com"; //
static const devBaseUrlOfReport = "https://dc-api.23544.com"; // static const devBaseUrlOfReport = "https://dc-api.23544.com"; //
/* 正式地址 */ /* 正式地址 */
static const proBaseUrl = "https://mk-api.23544.com/mb-cli"; // static const proBaseUrl = "https://mk-hw.23544.com"; //
static const proLoginBaseUrl = "https://mk-api.23544.com"; // static const proLoginBaseUrl = "https://mk-hw.23544.com"; //
static const proBaseUrlOfReport = "https://dc-api.23544.com"; // static const proBaseUrlOfReport = "https://dc-api.23544.com"; //
static const proBaseUrlOfHomework = "https://mk-hw.23544.com/hw"; // static const proBaseUrlOfHomework = "https://mk-hw.23544.com/hw"; //

View File

@ -2,15 +2,18 @@ import 'package:json_annotation/json_annotation.dart';
part 'job_concerned_with_student_params.g.dart'; part 'job_concerned_with_student_params.g.dart';
@JsonSerializable() @JsonSerializable(includeIfNull: false)
class JobConcernedWithStudentParams extends Object { class JobConcernedWithStudentParams extends Object {
@JsonKey(name: 'taskIds') @JsonKey(name: 'taskIds')
List<int> taskIds; List<int> taskIds;
@JsonKey(name: 'pageIndex')
int? pageIndex;
@JsonKey(name: 'isCommit') @JsonKey(name: 'isCommit')
bool? isCommit; bool? isCommit;
JobConcernedWithStudentParams(this.taskIds, {this.isCommit}); JobConcernedWithStudentParams(this.taskIds, {this.isCommit, this.pageIndex});
factory JobConcernedWithStudentParams.fromJson(Map<String, dynamic> srcJson) => factory JobConcernedWithStudentParams.fromJson(Map<String, dynamic> srcJson) =>
_$JobConcernedWithStudentParamsFromJson(srcJson); _$JobConcernedWithStudentParamsFromJson(srcJson);

View File

@ -1,9 +1,13 @@
import 'package:json_annotation/json_annotation.dart'; import 'package:json_annotation/json_annotation.dart';
import 'package:uuid/uuid.dart';
part 'job_report_join_class.g.dart'; part 'job_report_join_class.g.dart';
@JsonSerializable() @JsonSerializable()
class JobReportJoinClass extends Object { class JobReportJoinClass extends Object {
@JsonKey(name: 'uniqueId')
String? uniqueId;
@JsonKey(name: 'schoolId') @JsonKey(name: 'schoolId')
int schoolId; int schoolId;
@ -28,16 +32,11 @@ class JobReportJoinClass extends Object {
@JsonKey(name: 'submitCount') @JsonKey(name: 'submitCount')
int submitCount; int submitCount;
JobReportJoinClass( JobReportJoinClass(this.schoolId, this.schoolName, this.gradeId, this.gradeName, this.graduationYear, this.className,
this.schoolId, this.toBeSubmitCount, this.submitCount,
this.schoolName, [this.uniqueId]) {
this.gradeId, if (uniqueId == null) uniqueId = Uuid().v1();
this.gradeName, }
this.graduationYear,
this.className,
this.toBeSubmitCount,
this.submitCount,
);
factory JobReportJoinClass.fromJson(Map<String, dynamic> srcJson) => _$JobReportJoinClassFromJson(srcJson); factory JobReportJoinClass.fromJson(Map<String, dynamic> srcJson) => _$JobReportJoinClassFromJson(srcJson);

View File

@ -49,6 +49,22 @@ class JobReportModel extends Object {
@JsonKey(name: 'overallTitles') @JsonKey(name: 'overallTitles')
List<OverallTitles> overallTitles; List<OverallTitles> overallTitles;
// --
@JsonKey(name: 'allpairsStudents')
List<StudentAnswerInfos>? allpairsStudents;
// --
@JsonKey(name: 'passStudents')
List<StudentAnswerInfos>? passStudents;
// --
@JsonKey(name: 'disqualifiedStudents')
List<StudentAnswerInfos>? disqualifiedStudents;
// --
@JsonKey(name: 'notdoneStudents')
List<StudentAnswerInfos>? notdoneStudents;
JobReportModel( JobReportModel(
this.studentCount, this.studentCount,
this.finishRate, this.finishRate,
@ -64,8 +80,36 @@ class JobReportModel extends Object {
this.knowledgeInfos, this.knowledgeInfos,
this.questionAnswerInfos, this.questionAnswerInfos,
this.studentAnswerInfos, this.studentAnswerInfos,
this.overallTitles, this.overallTitles, [
); this.allpairsStudents,
this.passStudents,
this.disqualifiedStudents,
this.notdoneStudents,
]) {
this.allpairsStudents = [];
this.passStudents = [];
this.disqualifiedStudents = [];
this.notdoneStudents = [];
//
studentAnswerInfos.forEach((item) {
if (item.correctRate == 100 && item.noAnswerCount == 0) {
//
allpairsStudents?.add(item);
}
if (item.correctRate >= 60 && item.correctRate < 100) {
//
passStudents?.add(item);
}
if (item.correctRate >= 0 && item.correctRate < 60) {
//
disqualifiedStudents?.add(item);
}
if (questionAnswerInfos.length == item.noAnswerCount) {
//
notdoneStudents?.add(item);
}
});
}
factory JobReportModel.fromJson(Map<String, dynamic> srcJson) => _$JobReportModelFromJson(srcJson); factory JobReportModel.fromJson(Map<String, dynamic> srcJson) => _$JobReportModelFromJson(srcJson);

View File

@ -1,5 +1,4 @@
import 'package:achievement_view/achievement_view.dart'; import 'package:achievement_view/achievement_view.dart';
import 'package:badges/badges.dart';
import 'package:collection/collection.dart'; import 'package:collection/collection.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:flutter_hooks/flutter_hooks.dart';
@ -248,7 +247,13 @@ Widget $completedHomeworkView(BuildContext context,
taskIds: jobTaskItem.markingTasks.map((e) => e.id).toList(), taskIds: jobTaskItem.markingTasks.map((e) => e.id).toList(),
), ),
InkWell( InkWell(
onTap: () {}, onTap: () {
RouterManager.router.navigateTo(
context,
RouterManager.jobReportPagePath + '?title=${Uri.encodeComponent(jobTaskItem.title)}&id=${jobTaskItem.id}',
transition: getTransition(),
);
},
child: Row( child: Row(
children: [ children: [
Expanded(flex: 1, child: SizedBox()), Expanded(flex: 1, child: SizedBox()),

View File

@ -113,6 +113,7 @@ Widget $dropdownBoxSwitchStudentsOrTypeView(BuildContext context,
JobDoPapersStudentBus? studentBus = _useSwitchStudentAndType.studentBusInfo.value; JobDoPapersStudentBus? studentBus = _useSwitchStudentAndType.studentBusInfo.value;
if (studentBus != null && studentBus.pageIndex == thePageIndex) return; // if (studentBus != null && studentBus.pageIndex == thePageIndex) return; //
if (thePageIndex != null) { if (thePageIndex != null) {
_useSwitchStudentAndType.getDataForStudents(taskId: taskId, pageIndex: thePageIndex);
int indexLocated = _useSwitchStudentAndType.tabs.value.indexWhere((element) => element.pageIndex == thePageIndex); int indexLocated = _useSwitchStudentAndType.tabs.value.indexWhere((element) => element.pageIndex == thePageIndex);
_useSwitchStudentAndType.eventFire( _useSwitchStudentAndType.eventFire(
model: MarkingTextQuestionJobTabParamsBus(taskId, thePageIndex, model: MarkingTextQuestionJobTabParamsBus(taskId, thePageIndex,
@ -120,19 +121,22 @@ Widget $dropdownBoxSwitchStudentsOrTypeView(BuildContext context,
previousPageIndex: _useSwitchStudentAndType.getPreviousPageIndex(indexLocated))); previousPageIndex: _useSwitchStudentAndType.getPreviousPageIndex(indexLocated)));
} }
}); });
useValueChanged<JobConcernedWithStudent?, String>(_useSwitchStudentAndType.currentStudent.value, (_, __) { useValueChanged<JobConcernedWithStudent?, String>(_useSwitchStudentAndType.currentStudent.value, (oldData, __) {
var studentId = _useSwitchStudentAndType.currentStudent.value?.studentId; var studentId = _useSwitchStudentAndType.currentStudent.value?.studentId;
JobDoPapersStudentBus? studentBus = _useSwitchStudentAndType.studentBusInfo.value; JobDoPapersStudentBus? studentBus = _useSwitchStudentAndType.studentBusInfo.value;
if (studentBus != null && studentBus.studentId == studentId) return; // if (studentBus != null && studentBus.studentId == studentId) return; //
var thePageIndex = _useSwitchStudentAndType.currentTab.value?.pageIndex; var thePageIndex = _useSwitchStudentAndType.currentTab.value?.pageIndex;
if (thePageIndex != null) // if (thePageIndex != null) //
{
int indexLocated = _useSwitchStudentAndType.tabs.value.indexWhere((element) => element.pageIndex == thePageIndex);
_useSwitchStudentAndType.eventFire( _useSwitchStudentAndType.eventFire(
model: MarkingTextQuestionJobTabParamsBus(taskId, thePageIndex, model: MarkingTextQuestionJobTabParamsBus(taskId, thePageIndex,
studentId: studentId, studentId: studentId,
nextPageIndex: _useSwitchStudentAndType.getNextPageIndex(thePageIndex), nextPageIndex: _useSwitchStudentAndType.getNextPageIndex(indexLocated),
previousPageIndex: _useSwitchStudentAndType.getPreviousPageIndex(thePageIndex)), previousPageIndex: _useSwitchStudentAndType.getPreviousPageIndex(indexLocated)),
); );
}
}); });
useEffect(() { useEffect(() {
@ -162,7 +166,7 @@ Widget $dropdownBoxSwitchStudentsOrTypeView(BuildContext context,
print('是否是优先批阅1111${_useSwitchStudentAndType.isFirst}'); print('是否是优先批阅1111${_useSwitchStudentAndType.isFirst}');
break; break;
case JobCheckSwitchingQuestionTabBus: case JobCheckSwitchingQuestionTabBus:
// //
_useSwitchStudentAndType.refreshQuestionTypeData(context, taskId: taskId, exitCallback: exitCallback); _useSwitchStudentAndType.refreshQuestionTypeData(context, taskId: taskId, exitCallback: exitCallback);
break; break;
case MarkingTextQuestionJobTabParams: // case MarkingTextQuestionJobTabParams: //

View File

@ -64,11 +64,13 @@ class UseSwitchStudentAndType with CommonMixin, EventBusMixin {
} }
// //
getDataForStudents({required int taskId}) async { getDataForStudents({required int taskId, int? pageIndex}) async {
RestClient client = await getClient(); RestClient client = await getClient();
BaseStructureResult<List<JobConcernedWithStudent>> result = await client.getJobWithStudents( if (pageIndex == null) {
JobConcernedWithStudentParams([taskId], isCommit: true), pageIndex = currentTab.value?.pageIndex;
); }
BaseStructureResult<List<JobConcernedWithStudent>> result =
await client.getJobWithStudents(JobConcernedWithStudentParams([taskId], isCommit: true, pageIndex: pageIndex));
if (result.success && result.data != null) studentData.value = result.data!; if (result.success && result.data != null) studentData.value = result.data!;
} }
@ -149,7 +151,8 @@ class UseSwitchStudentAndType with CommonMixin, EventBusMixin {
if (continueFlag == null || !continueFlag) return tabJob; // if (continueFlag == null || !continueFlag) return tabJob; //
*/ */
tabs.value = tabDatas; tabs.value = tabDatas;
currentTab.value = tabJob; if (tabJob != null) currentTab.value = tabJob;
if (tabJob == null && exitPromptFlag.value) ToastUtils.showSuccess('最后一题提交成功');
return tabJob; return tabJob;
} }
} }

View File

@ -44,7 +44,7 @@ class _JobReportState extends State<JobReport> with CommonMixin {
BaseStructureResult<List<JobReportJoinClass>> result = await _client.getJobReportJoinClasses(widget.id); BaseStructureResult<List<JobReportJoinClass>> result = await _client.getJobReportJoinClasses(widget.id);
if (result.success) { if (result.success) {
toUpState(setState, () { toUpState(setState, () {
involveClasses = [JobReportJoinClass(-1, '全部', -1, '全部', '全部', '全部', -1, -1), ...(result.data ?? [])]; involveClasses = [JobReportJoinClass(-1, '全部', -1, '全部', '全部', '全部', -1, -1, '-1'), ...(result.data ?? [])];
}, mounted); }, mounted);
} }
} catch (e) { } catch (e) {
@ -75,11 +75,17 @@ class _JobReportState extends State<JobReport> with CommonMixin {
appBar: AppBar( appBar: AppBar(
backgroundColor: Colors.white, backgroundColor: Colors.white,
title: quickText(widget.title, size: 16.sp, color: Color.fromRGBO(51, 51, 51, 1)), title: quickText(widget.title, size: 16.sp, color: Color.fromRGBO(51, 51, 51, 1)),
leading: IconButton(
icon: Icon(Icons.arrow_back_ios, color: Colors.black),
onPressed: () => Navigator.of(context).pop(),
),
actions: [ actions: [
// //
$DropdownSelection(involveClasses, classData, call: (JobReportJoinClass _classData) { $DropdownSelection(involveClasses, classData, call: (JobReportJoinClass _classData) {
classData = _classData; classData = _classData;
toUpState(setState, () => _future = getReport(), mounted); if (_classData.gradeId == -1) classData = null;
_future = getReport();
toUpState(setState, () {}, mounted);
}), }),
], ],
), ),
@ -96,7 +102,7 @@ class _JobReportState extends State<JobReport> with CommonMixin {
); );
return ListView( return ListView(
padding: EdgeInsets.symmetric(vertical: 4.h, horizontal: 10.w), padding: EdgeInsets.symmetric(horizontal: 10.w),
children: [ children: [
// //
$TopGraphic(data), $TopGraphic(data),
@ -119,27 +125,96 @@ class _JobReportState extends State<JobReport> with CommonMixin {
@swidget @swidget
Widget $dropdownSelection(List<JobReportJoinClass>? involveClasses, JobReportJoinClass? classData, Widget $dropdownSelection(List<JobReportJoinClass>? involveClasses, JobReportJoinClass? classData,
{required Function(JobReportJoinClass) call}) { {required Function(JobReportJoinClass) call}) {
print('有几条数据+${involveClasses?.length}');
if (involveClasses == null) return Container(child: quickText('点击重试')); // if (involveClasses == null) return Container(child: quickText('点击重试')); //
return DropdownButton( return DropdownButton(
value: classData?.gradeId ?? -1, value: classData?.uniqueId ?? '-1',
style: TextStyle(color: Color.fromRGBO(89, 89, 89, 1), fontSize: 12.sp), style: TextStyle(color: Color.fromRGBO(89, 89, 89, 1), fontSize: 12.sp),
items: involveClasses.map((e) { items: involveClasses.map((e) {
return DropdownMenuItem( return DropdownMenuItem(
value: e.gradeId, value: e.uniqueId!,
child: quickText(e.graduationYear, size: 12.sp, color: Colors.black), child: quickText(e.graduationYear + e.className, size: 12.sp, color: Colors.black),
); );
}).toList(), }).toList(),
onChanged: (int? value) { onChanged: (String? value) {
if (value == null) return; if (value == null) return;
call(involveClasses.firstWhere((element) => element.gradeId == value)); call(involveClasses.firstWhere((element) => element.uniqueId == value));
}, },
); );
} }
/// ///
@swidget @swidget
Widget $topGraphic(JobReportModel data) { Widget $topGraphic(BuildContext context, JobReportModel data) {
void showDetail(String showType) async {
//
List<StudentAnswerInfos> students = [];
String title = '';
switch (showType) {
case '全对':
title = '全对';
students = data.allpairsStudents!;
break;
case '及格':
title = '及格';
students = data.passStudents!;
break;
case '不及格':
title = '不及格';
students = data.disqualifiedStudents!;
break;
case '未做':
title = '未做';
students = data.notdoneStudents!;
break;
}
if (students.isEmpty) return ToastUtils.showInfo('没有$title学生');
//
showDialog(
context: context,
builder: (BuildContext context1) {
return Container(
margin: EdgeInsets.symmetric(vertical: 150.h, horizontal: 24.w),
padding: EdgeInsets.symmetric(vertical: 15.h),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(18.sp),
),
child: Column(
children: [
Container(child: quickText('$title学生', color: Color.fromRGBO(60, 60, 60, 1), size: 15.sp)),
// Expanded(
// child: ListView(padding: EdgeInsets.symmetric(horizontal: 12.w), children: [
// DataTable(
// columns: [
// DataColumn(
// label: quickText('姓名',
// color: Color.fromRGBO(114, 114, 114, 1), size: 14.sp, fontWeight: FontWeight.bold),
// numeric: true),
// DataColumn(
// label: quickText('正确率',
// color: Color.fromRGBO(114, 114, 114, 1), size: 14.sp, fontWeight: FontWeight.bold),
// numeric: true),
// DataColumn(
// label: quickText('未答题数',
// color: Color.fromRGBO(114, 114, 114, 1), size: 14.sp, fontWeight: FontWeight.bold),
// numeric: true),
// ],
// rows: [
// DataRow(cells: [
// DataCell(quickText('', color: Color.fromRGBO(61, 61, 61, 1))),
// ]),
// ],
// ),
// ]),
// )
],
),
);
},
);
}
return Container( return Container(
margin: EdgeInsets.only(top: 16.h, bottom: 10.h), margin: EdgeInsets.only(top: 16.h, bottom: 10.h),
padding: EdgeInsets.symmetric(horizontal: 12.w, vertical: 14.h), padding: EdgeInsets.symmetric(horizontal: 12.w, vertical: 14.h),
@ -218,18 +293,18 @@ Widget $topGraphic(JobReportModel data) {
child: Row( child: Row(
children: [ children: [
Expanded( Expanded(
flex: 2, flex: 2,
child: quickText('${data.validCount}', child:
color: Colors.white, size: 10.sp, fontWeight: FontWeight.bold)), quickText('${data.validCount}', color: Colors.white, size: 10.sp, fontWeight: FontWeight.bold),
),
SizedBox(width: 1.2.w), SizedBox(width: 1.2.w),
Expanded( Expanded(
flex: 7, flex: 7,
child: Container( child: Container(
padding: EdgeInsets.all(12.r), padding: EdgeInsets.all(12.r),
decoration: BoxDecoration( decoration: BoxDecoration(
shape: BoxShape.circle, // shape: BoxShape.circle, //
color: Color.fromRGBO(76, 199, 147, 1), color: Color.fromRGBO(76, 199, 147, 1)),
),
child: Row( child: Row(
children: [ children: [
Expanded( Expanded(
@ -396,7 +471,7 @@ Widget $topGraphic(JobReportModel data) {
), ),
SizedBox(height: 8.h), SizedBox(height: 8.h),
InkWell( InkWell(
onTap: () {}, onTap: () => showDetail('全对'),
child: Container( child: Container(
width: 77.w, width: 77.w,
alignment: Alignment.center, alignment: Alignment.center,
@ -484,7 +559,7 @@ Widget $topGraphic(JobReportModel data) {
), ),
SizedBox(height: 8.h), SizedBox(height: 8.h),
InkWell( InkWell(
onTap: () {}, onTap: () => showDetail('及格'),
child: Container( child: Container(
width: 77.w, width: 77.w,
alignment: Alignment.center, alignment: Alignment.center,
@ -572,7 +647,7 @@ Widget $topGraphic(JobReportModel data) {
), ),
SizedBox(height: 8.h), SizedBox(height: 8.h),
InkWell( InkWell(
onTap: () {}, onTap: () => showDetail('不及格'),
child: Container( child: Container(
width: 77.w, width: 77.w,
alignment: Alignment.center, alignment: Alignment.center,
@ -661,7 +736,7 @@ Widget $topGraphic(JobReportModel data) {
), ),
SizedBox(height: 8.h), SizedBox(height: 8.h),
InkWell( InkWell(
onTap: () {}, onTap: () => showDetail('未做'),
child: Container( child: Container(
width: 77.w, width: 77.w,
alignment: Alignment.center, alignment: Alignment.center,

View File

@ -118,11 +118,7 @@ class _ReviewJobState extends State<ReviewJob> with CommonMixin, SingleTickerPro
appBar: PreferredSize( appBar: PreferredSize(
preferredSize: Size.fromHeight(40.h), preferredSize: Size.fromHeight(40.h),
child: AppBar( child: AppBar(
title: quickText( title: quickText('回评', size: 18.sp, color: Colors.white),
'回评',
size: 18.sp,
color: Colors.white,
),
elevation: 0, elevation: 0,
// actions: [ // actions: [
// Container( // Container(

View File

@ -13,6 +13,7 @@ import 'package:fluro/fluro.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:marking_app/common/model/enum/marking_list_type.dart'; import 'package:marking_app/common/model/enum/marking_list_type.dart';
import 'package:marking_app/pages/common/startUpPage.dart'; import 'package:marking_app/pages/common/startUpPage.dart';
import 'package:marking_app/pages/homework_correction/job_report.dart';
import 'package:marking_app/pages/homework_correction/review_job.dart'; import 'package:marking_app/pages/homework_correction/review_job.dart';
import 'package:marking_app/pages/login/index.dart'; import 'package:marking_app/pages/login/index.dart';
@ -47,6 +48,9 @@ class RouterManager {
static const String agreementPath = 'other/agreement_page'; static const String agreementPath = 'other/agreement_page';
static const String ohterMainPagePath = 'other/index'; static const String ohterMainPagePath = 'other/index';
//
static const String jobReportPagePath = '/job/report/index';
static const String reportClassTeacherPath = 'report/details/reportClassTeacher'; static const String reportClassTeacherPath = 'report/details/reportClassTeacher';
static const String reportSubjectTeacherPath = 'report/details/reportSubjectTeacher'; static const String reportSubjectTeacherPath = 'report/details/reportSubjectTeacher';
static const String reportPersonalSubjectPath = 'report/details/reportPersonalSubject'; static const String reportPersonalSubjectPath = 'report/details/reportPersonalSubject';
@ -161,7 +165,12 @@ class RouterManager {
toPrint(val: '进入跳转报错啦,$e'); toPrint(val: '进入跳转报错啦,$e');
} }
}); });
//
static final _jobReportPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
int id = int.parse(params['id']![0]);
String title = params['title']![0];
return JobReport(id: id, title: title);
});
static final _agreementPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) { static final _agreementPageHandler = Handler(handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
AGREEMENT_KEY key = AGREEMENT_KEY.values.byName(params['type']![0]); AGREEMENT_KEY key = AGREEMENT_KEY.values.byName(params['type']![0]);
return AgreementPage(type: key); return AgreementPage(type: key);
@ -191,10 +200,10 @@ class RouterManager {
handlerFunc: (BuildContext? context, Map<String, List<String>> params) => TheMine(), handlerFunc: (BuildContext? context, Map<String, List<String>> params) => TheMine(),
); );
static final _reportDetailPath = Handler( static final _reportDetailPath = Handler(
handlerFunc: (BuildContext? context, Map<String, List<String>> params){ handlerFunc: (BuildContext? context, Map<String, List<String>> params) {
int examId = int.parse(params['examId']![0]); int examId = int.parse(params['examId']![0]);
bool showGrade = params['showGrade']![0] == 'true'; bool showGrade = params['showGrade']![0] == 'true';
return ReportDetail(examId: examId,showGrade:showGrade); return ReportDetail(examId: examId, showGrade: showGrade);
}, },
); );
@ -248,6 +257,7 @@ class RouterManager {
handler: _reportPersonalSubjectPageHandler, transitionType: TransitionType.material); handler: _reportPersonalSubjectPageHandler, transitionType: TransitionType.material);
router.define(userMinePath, handler: _userMinePageHandler, transitionType: TransitionType.material); router.define(userMinePath, handler: _userMinePageHandler, transitionType: TransitionType.material);
router.define(reportDetailPath, handler: _reportDetailPath, transitionType: TransitionType.material); router.define(reportDetailPath, handler: _reportDetailPath, transitionType: TransitionType.material);
router.define(jobReportPagePath, handler: _jobReportPageHandler, transitionType: TransitionType.material);
// getTransition() // getTransition()

View File

@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at # Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.93 version: 1.0.95
environment: environment:
sdk: ">=2.17.1 <3.0.0" sdk: ">=2.17.1 <3.0.0"

View File

@ -20,6 +20,13 @@ add_executable(${BINARY_NAME} WIN32
# that need different build settings. # that need different build settings.
apply_standard_settings(${BINARY_NAME}) apply_standard_settings(${BINARY_NAME})
# Add preprocessor definitions for the build version.
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}")
target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}")
# Disable Windows macros that collide with C++ standard library functions. # Disable Windows macros that collide with C++ standard library functions.
target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX")

View File

@ -60,14 +60,14 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
// Version // Version
// //
#ifdef FLUTTER_BUILD_NUMBER #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD
#else #else
#define VERSION_AS_NUMBER 1,0,0 #define VERSION_AS_NUMBER 1,0,0,0
#endif #endif
#ifdef FLUTTER_BUILD_NAME #if defined(FLUTTER_VERSION)
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME #define VERSION_AS_STRING FLUTTER_VERSION
#else #else
#define VERSION_AS_STRING "1.0.0" #define VERSION_AS_STRING "1.0.0"
#endif #endif