| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <script src="../js/jquery-ui.min.js"></script>
- <script src="../js/bootstrap-select/js/bootstrap-select.js"></script>
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="../css/Table/table1.css" />
-
- <link href="../js/fullcalendar/fullcalendar.css" rel="stylesheet" />
- <link href="../js/bootstrap-select/css/bootstrap-select.css" rel="stylesheet" />
- <script src="../js/fullcalendar/fullcalendar.min.js"></script>
- <script src="js/hao.js"></script>
- <script src="js/fullcalendar.js"></script>
- <title>排班管理</title>
- <style>
- .fc-event-title {
- color: white;
- }
- .fc-state-active,.fc-state-disabled{
- background-color: #22b3aa;
- color: #fff;
- box-shadow: none;
- }
- .group {
- margin-bottom: 5px;
- }
-
- .seatuser {
- color: black;
- padding: 5px 10px;
- border-radius: 2px;
- cursor: pointer;
- margin-bottom: 5px;
- background-color: #f3f3f4;
- }
-
- /*.active {
- background-color: #1ab394;
- color: #fff;
- }*/
-
- .lable {
- /*display: none;*/
- background-color: #d1dade;
- color: #5e5e5e;
- font-size: 10px;
- padding: 3px 8px;
- text-shadow: none;
- font-size: 75%;
- font-weight: 700;
- line-height: 1;
- text-align: center;
- white-space: nowrap;
- vertical-align: baseline;
- border-radius: .25em;
- margin: 3px;
- float: left;
- cursor: pointer;
- }
-
- .active~.lable {
- display: inline;
- }
-
- .fc-ltr .fc-event-hori.fc-event-end,
- .fc-rtl .fc-event-hori.fc-event-start {
- display: none;
- }
- /*修改字体大小 20180525 by fanlongfei*/
- #calendar{
- /*width: 70%;*/
- width: 95%;
- margin: 0 auto;
- }
- .fc-first .fc-day-header {
- font-size: 16px;
- }
- .fc-grid .fc-day-number{
- font-size: 16px;
- }
- .fc-grid .fc-day-number{
- line-height: 20px;
- }
- .fc-day-cnTerm, .fc-day-cnDate{
- font-size: 14px;
- }
- .feed-element{
- border-bottom: 1px solid #ccc;
- padding-top: 10px;
- padding-bottom: 10px;
- padding-left: 5px;
- margin-top:0!important;
- }
- .tooltip-demo button{
- margin-right: 10px;
- }
- .feed-element.active{
- background: #ddd;
- }
- .redFont.offday{
- font-weight: bold;
- /*background: #5cb85c;*/
- color: #fff;
- padding: 4px;
- font-size: 15px;
- border-radius: 5px;
- }
- .fc-state-highlight{
- background: #7dddd1!important;
- }
- .img-headPic{
- width: 45px;
- height: 50px;
- }
- </style>
- </head>
- <body class="gray-bg">
- <div class="daoHang clearfix">
- <div class="dhLeft">
- <sapn><i class="syIcon"></i>位置:
- <a id="ReIndex" href="javaScript:;" class="indexreturn">首页</a>>
- <a href="javaScript:;">话务管理</a>>
- <a href="javascript:location.reload()" class="now_position">排班管理</a>
- </sapn>
- </div>
- </div>
- <div class="container-fluid wrapper-content animated fadeInRight">
- <div class="th-box">
- <div class="form-inline th-bar clearfix">
-
- <div class="form-group">
- <select class="form-control selectpicker" id="sc_pro" data-live-search="true">
- <option value="">请选择项目</option>
- </select>
- </div>
- <div class="form-group tool_bars pull-right">
- <input type="button" class="btn_gray" id="sc_btns" value="搜索" />
- </div>
- </div>
- </div>
-
-
- <div class="col-sm-5">
- <div class="trTitle">日期表</div>
- <div id="calendar"></div>
- </div>
- <div class="col-sm-7">
- <div class="trTitle">人员列表</div>
- <div class="peopleList" style="height:691px;overflow-y: scroll;">
-
- </div>
- </div>
- </div>
- <script src="js/WorkforceManagement.js"></script>
- </body>
- </html>
|