商丘12345 前端

huTotal.html 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <script src="../Script/Common/huayi.load.js"></script>
  7. <script src="../Script/Common/huayi.config.js"></script>
  8. <link href="../css/bootstrap.min14ed.css?v=3.3.6" rel="stylesheet">
  9. <link href="../css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
  10. <link href="../css/animate.min.css" rel="stylesheet">
  11. <link href="../css/style.min862f.css?v=4.1.0" rel="stylesheet">
  12. <link rel="stylesheet" href="../css/huTotal.css" />
  13. <link rel="stylesheet" href="../css/init.css" />
  14. <title>呼叫总数</title>
  15. </head>
  16. <style>
  17. @font-face {
  18. font-family: 'iconfont';
  19. src: url('fonts/iconfont.eot');
  20. /* IE9*/
  21. src: url('fonts/iconfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  22. url('fonts/iconfont.woff') format('woff'), /* chrome、firefox */
  23. url('fonts/iconfont.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  24. url('fonts/iconfont.svg#iconfont') format('svg');
  25. /* iOS 4.1- */
  26. }
  27. .iconfont {
  28. font-family: "iconfont";
  29. font-style: normal;
  30. }
  31. ul,
  32. li,
  33. ol {
  34. list-style: none;
  35. }
  36. a {
  37. text-decoration: none
  38. }
  39. .clearfix:after {
  40. content: "";
  41. display: block;
  42. clear: both;
  43. }
  44. .hut-top{
  45. background: #f3f3f4;
  46. /*height: 60px;*/
  47. padding: 10px 20px;
  48. }
  49. .hut-tcon{
  50. float: right;
  51. }
  52. .dhLeft a{
  53. color: #999;
  54. }
  55. .huTable thead td{
  56. background: #00a1cb!important;
  57. color: #fff!important;
  58. }
  59. .time-box{
  60. display: inline-block;
  61. position: relative;
  62. }
  63. .toolRight input{
  64. padding-right: 30px;
  65. }
  66. .tub{
  67. position: absolute;
  68. right: 8px;
  69. top: 5px;
  70. font-size: 18px;
  71. color: #00a0ca;
  72. }
  73. #thead thead th{
  74. background: #00a0cd;
  75. color: #fff;
  76. }
  77. table thead, tbody tr {
  78. display:table;
  79. width:100%;
  80. table-layout:fixed;
  81. }
  82. .table{
  83. margin-bottom: 0;
  84. }
  85. </style>
  86. <body class="gray-bg" style="background: #fefefe;">
  87. <div class="hu-total wrapper wrapper-content animated fadeInRight">
  88. <div class="daoHang clearfix">
  89. <div class="dhLeft">
  90. <sapn><i class="syIcon"></i>位置:<a id="ReIndex" href="javaScript:;">首页</a>&gt;<a href="javaScript:;">报表管理</a>&gt;<a href="" class="nowPosition">总呼叫量</a></sapn>
  91. </div>
  92. <div class="dhRight"><a href="" title="刷新"><i class="fa fa-refresh"></i></a></div>
  93. </div>
  94. <div class="toolBar clearfix">
  95. <div class="toolRight" style="float: right;">
  96. 时间:<span class="time-box"><i class="tub fa fa-calendar"></i><input type="text" id="chooseTime" /></span>
  97. <button class="btns sear">搜索</button>
  98. <a class="btns export">导出</a>
  99. </div>
  100. </div>
  101. <!--<div class="hut-top clearfix">
  102. <div class="topCon">
  103. </div>
  104. </div>-->
  105. <ul class="nav nav-tabs hu-tab">
  106. <li role="presentation" class="active"><a href="javascript:;">图形</a></li>
  107. <li role="presentation"><a href="javascript:;">表格</a></li>
  108. </ul>
  109. <div class="hu-content">
  110. <div class="hu-con-right">
  111. <h2 style="text-align: center;">数据折线图</h2>
  112. <div id="huData" style="width:100%; height: 500px;">
  113. </div>
  114. </div>
  115. <div class="hu-con-left" style="display:none;">
  116. <h2 style="text-align: center;">总呼叫量统计</h2>
  117. <div style="width: 100%;padding: 10px;">
  118. <div class="table-head">
  119. <table id="thead" class="table table-hover table-striped table-bordered table-condensed">
  120. <colgroup>
  121. <col style="width: 80px;"/>
  122. <col/>
  123. </colgroup>
  124. <thead>
  125. <tr>
  126. <th>月份月份</th>
  127. <th>日期</th>
  128. <th>总量</th>
  129. </tr>
  130. </thead>
  131. </table>
  132. </div>
  133. <div class="table-body">
  134. <table class=" huTable table table-hover table-striped table-bordered table-condensed">
  135. <colgroup>
  136. <col style="width: 80px;"/>
  137. <col/>
  138. </colgroup>
  139. <tbody>
  140. </tbody>
  141. </table>
  142. </div>
  143. </div>
  144. </div>
  145. </div>
  146. </div>
  147. <script src="../js/jquery.min.js?v=2.1.4"></script>
  148. <script src="../js/bootstrap.min.js?v=3.3.6"></script>
  149. <script src="../js/jquery.cookie.js"></script>
  150. <script src="../js/laydate/laydate.js"></script>
  151. <script src="../js/echarts.common.min.js"></script>
  152. <script src="../js/huTotal.js"></script>
  153. </body>
  154. </html>