23 lines
500 B
JavaScript
23 lines
500 B
JavaScript
|
|
// 护校考情
|
|
$(".workInclockReport").on('click',function(){
|
|
window.open("../nursingSchoolExamSituation/index.html","_self");
|
|
})
|
|
|
|
//安全检查
|
|
$(".dailyAttendance").on('click',function(){
|
|
window.open("../dailyInspection/index.html","_self");
|
|
})
|
|
|
|
//星级评定
|
|
$(".starrating").on('click',function(){
|
|
window.open("../starrating/index.html","_self");
|
|
})
|
|
|
|
//三色预警
|
|
$(".threeColorAlarm").on('click',function(){
|
|
window.open("../threeColorAlarm/index.html","_self");
|
|
})
|
|
|
|
|
|
|