|
|
|
@ -50,7 +50,7 @@
|
|
|
|
|
|
|
|
|
|
<div class="white-panel mb20 pl0 clearfix">
|
|
|
|
|
<li class="active" index="1"><a href="javascript:void(0);">课堂</a></li>
|
|
|
|
|
<li index="2"><a href="<%= student_shixun_college_path(@school) %>" data-remote="true">学生实训</a></li>
|
|
|
|
|
<li index="2"><a href="<%= student_shixun_college_path(@department.try(:identifier) || @school) %>" data-remote="true">学生实训</a></li>
|
|
|
|
|
<!--<li><a href="<%#= engineering_capability_college_path(@department) %>" data-remote="true">工程能力</a></li>-->
|
|
|
|
|
<!-- <li index="4"><a href="<%#= student_eval_college_path(@school) %>" data-remote="true">学生测评</a></li>-->
|
|
|
|
|
</div>
|
|
|
|
@ -139,15 +139,15 @@
|
|
|
|
|
})
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$.get('<%= shixun_time_college_path(@department.identifier) %>', function(data){
|
|
|
|
|
$.get('<%= shixun_time_college_path(@department.try(:identifier) || @school) %>', function(data){
|
|
|
|
|
$('.shixun-time').html("<span data-tip-down=\"所有学员的实训耗时之和\">" + data.shixun_time + "</span>天");
|
|
|
|
|
});
|
|
|
|
|
$.get('<%= shixun_report_count_college_path(@department.identifier) %>', function(data){
|
|
|
|
|
$.get('<%= shixun_report_count_college_path(@department.try(:identifier) || @school) %>', function(data){
|
|
|
|
|
$('.shixun-report-count').html("<span>" + data.shixun_report_count + "</span>个");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 教师排名
|
|
|
|
|
$.ajax({ url: '<%= teachers_college_path(@department.identifier) %>', method: 'GET', dataType: 'script' })
|
|
|
|
|
$.ajax({ url: '<%= teachers_college_path(@department.try(:identifier) || @school) %>', method: 'GET', dataType: 'script' })
|
|
|
|
|
|
|
|
|
|
$(".count_student_test a").click(function(){
|
|
|
|
|
$(".count_student_test a").removeClass("active");
|
|
|
|
@ -155,7 +155,7 @@
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//初始化饼状图
|
|
|
|
|
$.get('<%= shixun_chart_data_college_path(@department.identifier) %>', function(data){
|
|
|
|
|
$.get('<%= shixun_chart_data_college_path(@department.try(:identifier) || @school) %>', function(data){
|
|
|
|
|
$('.pie-chart-loading').hide();
|
|
|
|
|
if (data.names.length > 0) {
|
|
|
|
|
$('.online_status .edu-tab-con-box').hide();
|
|
|
|
@ -166,7 +166,7 @@
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$.get('<%= course_statistics_college_path(@department.identifier) %>');
|
|
|
|
|
$.get('<%= course_statistics_college_path(@department.try(:identifier) || @school) %>');
|
|
|
|
|
});
|
|
|
|
|
function InitPieChart(names, data){
|
|
|
|
|
var Color = ['#49A9EE', '#FFD86E', '#98D87D', '#8996E6', '#F3857B', '#B97BF3','#4DE8B4','#F37BDB','#566EFF','#FF961A'];
|
|
|
|
|