search.html 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="Cache-Control" content="no-siteapp" />
  8. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  9. <!--[if lt IE 9]>
  10. <meta http-equiv="refresh" content="0;ie.html" />
  11. <![endif]-->
  12. <title>急救查询</title>
  13. <link href="../css/bootstrap.min14ed.css" rel="stylesheet">
  14. <link href="../css/plugins/dataTables/dataTables.bootstrap.css" rel="stylesheet">
  15. <link href="../css/index.css" rel="stylesheet">
  16. <style>
  17. .table-border tr {
  18. border-bottom: 1px solid #e2e2e2;
  19. }
  20. .dataTables_wrapper .bottom {
  21. margin-top: 10px;
  22. }
  23. .body-grey .bottom {
  24. padding: 0 15px;
  25. }
  26. .dataTables_wrapper .bottom:after {
  27. clear: both;
  28. }
  29. .dataTables_wrapper .bottom:after, .dataTables_wrapper .bottom:before {
  30. display: table;
  31. content: " ";
  32. }
  33. .dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate {
  34. margin-bottom: 10px;
  35. display: inline-block;
  36. }
  37. .dataTables_length, .dataTables_info {
  38. float: left;
  39. }
  40. .dataTables_info {
  41. line-height: 26px;
  42. margin-left: 10px;
  43. }
  44. .dataTables_filter, .dataTables_paginate {
  45. float: right;
  46. }
  47. .dataTables_length .layui-form-select {
  48. display: none;
  49. }
  50. .dataTables_length select, .dataTables_filter input[type=search] {
  51. width: 100px;
  52. height: 26px;
  53. border: 1px solid #ccc;
  54. padding: 0 5px;
  55. display: inline-block;
  56. }
  57. .dataTables_paginate a.paginate_button {
  58. border-radius: 2px;
  59. padding: 0 12px;
  60. background-color: #f1eff0;
  61. }
  62. .dataTables_paginate a, .dataTables_paginate > span > span {
  63. box-sizing: border-box;
  64. display: inline-block;
  65. min-width: 2em;
  66. height: 26px;
  67. line-height: 26px;
  68. border: 1px solid transparent;
  69. padding: 0 0.5em;
  70. margin-left: 6px;
  71. text-align: center;
  72. text-decoration: none;
  73. cursor: pointer;
  74. }
  75. .dataTables_paginate span a.current {
  76. color: white;
  77. background: #2e8ded;
  78. }
  79. .dataTables_length select {
  80. width: 60px;
  81. border-radius: 2px;
  82. }
  83. .table {
  84. width: 100%!important;
  85. }
  86. label {
  87. float: left;
  88. padding-right: 15px;
  89. padding-left: 15px;
  90. }
  91. .form-control{
  92. display: inline-block;
  93. width: auto;
  94. float: left;
  95. }
  96. </style>
  97. </head>
  98. <body>
  99. <div class="container-fluid">
  100. <div class="row-fluid">
  101. <div style="text-align:center;margin:10px 0 10px 0;">
  102. <div class="form-horizontal query-form">
  103. <!-- 这里添加查询条件 -->
  104. <div class="form-group">
  105. <div class="col-xs-6">
  106. <label class="control-label" for="startDate">急救时间</label>
  107. <input id="startDate" type="text" class="form-control input-md laydate-icon" style="width: 150px">
  108. <label class="control-label" for="endDate">至</label>
  109. <input id="endDate" type="text" class="form-control input-md laydate-icon" style="width: 150px">
  110. </div>
  111. <div class="col-xs-6">
  112. <label class="control-label " for="startDate">车牌号码</label>
  113. <input id="carId" type="text" class="form-control input-md">
  114. </div>
  115. </div>
  116. <div class="form-group">
  117. <div class="col-xs-6">
  118. <label class="control-label " for="startDate">呼救地点</label>
  119. <input id="callAddress" type="text" class="form-control input-md" style="width: 345px">
  120. </div>
  121. <div class="col-xs-6">
  122. <label class="control-label " for="startDate">送达医院</label>
  123. <input id="deliverAddress" type="text" class="form-control input-md">
  124. <button id="searchBtn" class="btn btn-primary">
  125. <i class="glyphicon glyphicon-search"></i> 查询
  126. </button>
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. <table id="dateTable" class="table table-bordered table-striped">
  132. <thead>
  133. <tr>
  134. <th>急救时间</th>
  135. <th>接警电话</th>
  136. <th>呼救地点</th>
  137. <th>派遣救护车</th>
  138. <th>送达医院</th>
  139. <th>操作</th>
  140. </tr>
  141. </thead>
  142. <tbody>
  143. </tbody>
  144. </table>
  145. </div>
  146. </div>
  147. <script src="../js/lib/jquery.min.js"></script>
  148. <script src="../js/lib/plugins/dataTables/jquery.dataTables.js"></script>
  149. <script src="../js/lib/plugins/layer/layer.min.js"></script>
  150. <script src="../js/lib/plugins/layer/laydate/laydate.js"></script>
  151. <script src="../js/scripts/search.js?v=9"></script>
  152. </body>
  153. </html>