|
|
|
@ -212,14 +212,14 @@ const App = (props) => {
|
|
|
|
|
pathId && staticList(pathId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
study_count,
|
|
|
|
|
course_study_count,
|
|
|
|
|
initiative_study,
|
|
|
|
|
passed_count,
|
|
|
|
|
course_used_count,
|
|
|
|
|
school_used_count
|
|
|
|
|
} = subject_info;
|
|
|
|
|
// const {
|
|
|
|
|
// study_count,
|
|
|
|
|
// course_study_count,
|
|
|
|
|
// initiative_study,
|
|
|
|
|
// passed_count,
|
|
|
|
|
// course_used_count,
|
|
|
|
|
// school_used_count
|
|
|
|
|
// } = subject_info;
|
|
|
|
|
|
|
|
|
|
const maps = {
|
|
|
|
|
1: 'subject_info', // 实践课程使用情况
|
|
|
|
@ -251,32 +251,32 @@ const App = (props) => {
|
|
|
|
|
</div>
|
|
|
|
|
<div className="header-number header-flex">
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:study_count} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.study_count} // 总数
|
|
|
|
|
txt={'学习总人数'} // 文字描述
|
|
|
|
|
desc={'学习该课程的全部人数(学习总人数=课堂学习人数+自主学习人数)'}
|
|
|
|
|
/>
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:course_study_count} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.course_study_count} // 总数
|
|
|
|
|
txt={'课堂学习人数'} // 文字描述
|
|
|
|
|
desc={'通过课堂学习该课程的人数'}
|
|
|
|
|
/>
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:initiative_study} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.initiative_study} // 总数
|
|
|
|
|
txt={'自主学习人数'} // 文字描述
|
|
|
|
|
desc={'通过自主学习该课程的人数'}
|
|
|
|
|
/>
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:passed_count} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.passed_count} // 总数
|
|
|
|
|
txt={'通关总人数'} // 文字描述
|
|
|
|
|
desc={'通关该课程所有实训的人数(去重。一个人数计算1次)'}
|
|
|
|
|
/>
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:course_used_count} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.course_used_count} // 总数
|
|
|
|
|
txt={'使用课堂数'} // 文字描述
|
|
|
|
|
desc={'使用该课程的课堂数量'}
|
|
|
|
|
/>
|
|
|
|
|
<StaticNumberAndTxt
|
|
|
|
|
count={subject_info===null?0:school_used_count} // 总数
|
|
|
|
|
count={subject_info===null?0:subject_info.school_used_count} // 总数
|
|
|
|
|
txt={'使用单位数'} // 文字描述
|
|
|
|
|
desc={'使用该课程的单位数量(包括自主学习者所在单位)'}
|
|
|
|
|
/>
|
|
|
|
|