diff --git a/marking_app/lib/pages/homework_correction/components/new_version_of_homework/homework_tasks_view_item.dart b/marking_app/lib/pages/homework_correction/components/new_version_of_homework/homework_tasks_view_item.dart index 2bffb6a..f5c2c6a 100644 --- a/marking_app/lib/pages/homework_correction/components/new_version_of_homework/homework_tasks_view_item.dart +++ b/marking_app/lib/pages/homework_correction/components/new_version_of_homework/homework_tasks_view_item.dart @@ -247,6 +247,32 @@ Widget $completedHomeworkView(BuildContext context, subjectivePrecision: jobTaskItem.subjectivePrecision / 100, taskIds: jobTaskItem.markingTasks.map((e) => e.id).toList(), ), + InkWell( + onTap: () {}, + child: Row( + children: [ + Expanded(flex: 1, child: SizedBox()), + Expanded( + flex: 9, + child: Container( + alignment: Alignment.center, + margin: EdgeInsets.only(top: 20.h), + padding: EdgeInsets.symmetric(vertical: 7.h), + decoration: BoxDecoration( + borderRadius: BorderRadius.circular(20), + gradient: LinearGradient( + begin: Alignment.centerLeft, + end: Alignment.centerRight, + colors: [Color.fromRGBO(95, 197, 255, 1), Color.fromRGBO(61, 68, 255, 0.82)], + ), + ), + child: quickText('查看报告', color: Colors.white, size: 12.sp), + ), + ), + Expanded(flex: 1, child: SizedBox()), + ], + ), + ), SizedBox(height: 10.h), ExpansionTile( tilePadding: EdgeInsets.only(right: 10.w, bottom: 0),