| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "scope");%>
- <%pageContext.setAttribute("currentMenu", "workcal");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>工作日历</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript" src="${ctx}/widgets/workcal3/WorkCalendar.js"></script>
- <script type="text/javascript">
- $(function() {
- var workCalendar = new WorkCalendar(${param.year});
- workCalendar.render('#m-main');
- workCalendar.activeByWeek(${weeks});
- workCalendar.markHolidays(${holidays});
- workCalendar.markWorkdays(${workdays});
- workCalendar.markExtrdays(${extrdays});
- workCalendar.markNow();
- });
- </script>
- </head>
- <body>
- <%@include file="/header/workcal.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/workcal.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|