This commit is contained in:
parent
7e3c6882e9
commit
5cdf645f86
|
|
@ -39,7 +39,7 @@ class _JobHomeState extends State<JobHome> with CommonMixin, EventBusMixin, Auto
|
|||
EntranceModel(
|
||||
title: '知识点掌握',
|
||||
image: '',
|
||||
navigationUrl: '',
|
||||
navigationUrl: RouterManager.jobKnowledgePointsPath,
|
||||
),
|
||||
EntranceModel(
|
||||
title: '答题轨迹',
|
||||
|
|
@ -49,7 +49,7 @@ class _JobHomeState extends State<JobHome> with CommonMixin, EventBusMixin, Auto
|
|||
EntranceModel(
|
||||
title: '优先批阅设定',
|
||||
image: '',
|
||||
navigationUrl: '',
|
||||
navigationUrl: RouterManager.jobStudentGroupPath,
|
||||
),
|
||||
EntranceModel(
|
||||
title: '批阅设置',
|
||||
|
|
|
|||
|
|
@ -18,8 +18,9 @@ import 'package:marking_app/common/model/job/job_concerned_with_student_params.d
|
|||
import 'package:marking_app/common/model/job/job_data_report.dart';
|
||||
import 'package:marking_app/common/model/job/job_do_marking_status_info.dart';
|
||||
import 'package:marking_app/common/model/job/job_fav_student.dart';
|
||||
import 'package:marking_app/common/model/job/job_favorite_item_model.dart';
|
||||
import 'package:marking_app/common/model/job/job_favorite_model.dart';
|
||||
import 'package:marking_app/common/model/job/job_knowledge_points.dart';
|
||||
import 'package:marking_app/common/model/job/job_knowledge_points_detail.dart';
|
||||
import 'package:marking_app/common/model/job/job_level_set_params.dart';
|
||||
import 'package:marking_app/common/model/job/job_note_taking_trajectory.dart';
|
||||
import 'package:marking_app/common/model/job/job_page_tab.dart';
|
||||
|
|
@ -33,7 +34,6 @@ import 'package:marking_app/common/model/job/job_student_history.dart';
|
|||
import 'package:marking_app/common/model/job/job_student_level.dart';
|
||||
import 'package:marking_app/common/model/job/job_task_item.dart';
|
||||
import 'package:marking_app/common/model/job/marking_text_question_job.dart';
|
||||
import 'package:marking_app/common/model/job/marking_text_question_job_params.dart';
|
||||
import 'package:marking_app/common/model/job/marking_text_question_job_tab_params.dart';
|
||||
import 'package:marking_app/common/model/job/review_again_list_params.dart';
|
||||
import 'package:marking_app/common/model/job/upload_file_interface_config.dart';
|
||||
|
|
@ -357,5 +357,17 @@ abstract class RestClient {
|
|||
@the_retrofit.Query("PageSize") int pageSize,
|
||||
);
|
||||
|
||||
// 作业 => 知识点掌握
|
||||
@the_retrofit.GET("/api/jobs/knowledge-report")
|
||||
Future<BaseStructureResult<List<KnowledgePoints>>> getKnowledgeReport(
|
||||
/* @the_retrofit.Query("dateStart") String? dateStart,
|
||||
@the_retrofit.Query("dateEnd") String? dateEnd,*/
|
||||
@the_retrofit.Query("knowledgeName") String? knowledgeName,
|
||||
);
|
||||
|
||||
// 作业 => 知识点掌握详情
|
||||
@the_retrofit.GET("/api/jobs/knowledge-detail-report")
|
||||
Future<BaseStructureResult<List<KnowledgePointsDetail>>> getKnowledgeReportDetail(
|
||||
@the_retrofit.Query("KnowledgeId") int knowledgeId,
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue