function task() { $.get('/api/Orders/task',{org_id:orgid},function (res) { if(res.status === 0) { var list = res.data.data; if(list.length > 0){ var str = ''; for (var i=0;i'; str += ''+list[i]['TASK_TYPE']+''; str += ''+list[i]['CONTENT']+''; str += ''+list[i]['executor']+''; str += ''+list[i]['DEP']+''; str += ''+list[i]['CREATTE_TIME']+''; str += ''+list[i]['IMAGES']+''; str += ''+list[i]['VIDEOS']+''; str += ''+list[i]['HANDOUT_TIME']+''; str += ''; } $('#task-order').html(str); } if (list.length > 10) { $(function(){ var text=$("#task-order:first"); var clear; text.hover(function(){ clearInterval(clear); },function(){ clear=setInterval(function(){ var field=text.find("tr:first"); var high=field.height(); text.animate({ marginTop:-high+"px"},600,function(){ field.css("marginTop",0).appendTo(text); text.css("marginTop",0); }) },2000)//滚动间隔时间 }).trigger("mouseleave");//自动滚动 }); } } }) } function patrol() { $.get('/api/Orders/patrol',{org_id:orgid},function (res) { if(res.status === 0) { var list = res.data.data; if(list.length > 0){ document.getElementById('ongoing-orders').style.display = 'block'; var str = ''; for (var i=0;i'; str += ''+list[i]['TITLE']+''; str += ''+list[i]['NAME']+''; str += ''+list[i]['USERS']+''; str += ''+list[i]['START_TIME']+''; str += ''+list[i]['END_TIME']+''; str += ''; } $('#ongoing-order').html(str); } } if (list.length > 10) { $(function(){ var text=$("#ongoing-order:first"); var clear; text.hover(function(){ clearInterval(clear); },function(){ clear=setInterval(function(){ var field=text.find("tr:first"); var high=field.height(); text.animate({ marginTop:-high+"px"},600,function(){ field.css("marginTop",0).appendTo(text); text.css("marginTop",0); }) },2000)//滚动间隔时间 }).trigger("mouseleave");//自动滚动 }); } }) } task(); patrol(); setInterval(function () { task(); patrol(); },1000*120); function realSysTime(clock) { var now = new Date(); var year = now.getFullYear(); //获取年份 var month = now.getMonth(); //获取月份 var date = now.getDate(); //获取日期 var day = now.getDay(); //获取星期 var hour = now.getHours(); //获取小时 var minute = now.getMinutes(); //获取分钟 var seconds = now.getSeconds(); //获取秒 month = month + 1; var arr_week = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"); var week = arr_week[day]; if (month<10) { month = '0'+month } if (date<10) { date = '0'+date } if (hour<10) { hour = '0'+hour } if (minute<10) { minute = '0'+minute } if (seconds<10) { seconds = '0'+seconds } var time = year + "年" + month + "月" + date + "日 " + week + " " + hour + ":" + minute + ":" + seconds; clock.innerHTML = time; } function show() { window.setInterval("realSysTime(clock)", 1000); } window.onload=show();