Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

100 rader
4.3 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />-->
  6. <link rel="stylesheet" type="text/css" href="./css/ace.min.css" />
  7. <link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css" />
  8. <link rel="stylesheet" type="text/css" href="./css/bootstrap-timepicker.css" />
  9. <link rel="stylesheet" type="text/css" href="./css/font-awesome.min.css" />
  10. <link rel="stylesheet" type="text/css" href="./css/daterangepicker.css" />
  11. <link rel="stylesheet" type="text/css" href="./css/datepicker.css" />
  12. <link rel="stylesheet" type="text/css" href="./css/master.css">
  13. <script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
  14. <script type="text/javascript" src="js/car_team.js" ></script>
  15. <script type="text/javascript" src="js/date-time/bootstrap-datepicker.min.js"></script>
  16. <script type="text/javascript" src="js/date-time/bootstrap-timepicker.min.js"></script>
  17. <title>线路-司机-列表</title>
  18. </head>
  19. <style type="text/css">
  20. .li_title {text-align: left;position:relative;float:left;width:100%;line-height:60px;height:60px;background:#cccccc;list-style:none;margin:2px 0px 0px 0px;padding:0px 5px 0px 5px;font-weight:600;overflow:hidden;cursor:pointer;}
  21. .li_title:hover{color: blue;}
  22. .li_content {text-align: left;margin-left: 30px;width:100%;background:#ffffff;list-style:none;marggin:0px 0px 0px 0px;padding:5px 5px 5px 5px;overflow:hidden;display:none;}
  23. .li_content span{display: inline-block;width: 30%;font-size: 28px;text-align: center;}
  24. ul{
  25. width: 100%;
  26. }
  27. ul li{
  28. width: 100%;
  29. }
  30. .li_title span{margin-right: 10px;font-size: 26px;}
  31. </style>
  32. <body>
  33. <!--
  34. 作者:fuhongcheng_fhc@163.com
  35. 时间:2016-07-28
  36. 描述:车队需要看到乘客信息
  37. -->
  38. <h1 id="h1_title" align="center"></h1>
  39. <div class="top" style="margin: 0 auto;width: 100%;margin-top: 40px;">
  40. <div class="col-sm-1" style="width: 500px;margin-left: 10%;">
  41. <div class="input-group">
  42. <!--<label class="col-sm-1 control-label no-padding-right" style="width: auto; font-size: 12px;margin-top:2px;margin-left:20px;">出发日期</label>
  43. <br />-->
  44. <!--<input id="id-date-picker-1" readonly="readonly" style="font-size: 12px;height: 30px;" onchange="selectDate(this.value)">-->
  45. <input style="font-size: 30px;width:200px;" id="id-date-picker-1" readonly="readonly" type="text" onchange="selectDate(this.value)"/>
  46. <!--<span class="input-group-addon">
  47. <i class="icon-calendar bigger-110"></i>
  48. </span>-->
  49. <input style="font-size: 30px;width:200px;margin-left: 20px;" id="search_res_name" placeholder="上车站点" type="text" />
  50. </div>
  51. </div>
  52. <div class="col-sm-1" style="width: 14%; padding-right: 2px;margin-left: 5%;">
  53. <span class="btn" style="font-size: 30px; height:49px;" onclick="get_current_day()">查询</span>
  54. </div>
  55. <div class="col-sm-1" style="width: 14%; padding-right: 2px;">
  56. <span id="before" class="btn" style="font-size: 30px; height:49px;" onclick="get_before_day()">前一天</span>
  57. </div>
  58. <div class="col-sm-1" style="width: 14%; padding-right: 2px;">
  59. <span id="after" class="btn" style="font-size: 30px; height:49px;" onclick="get_after_day()">后一天</span>
  60. </div>
  61. </div>
  62. <div style="clear:both;"></div>
  63. <div class="" style="margin: 0 auto;width: 90%;text-align: center;margin-top: 40px;">
  64. <span style="color: red;" id="warn_info"></span>
  65. <ul id="all_ul">
  66. <li class="li_title" style="display: none;" onclick="show_detail(0)">
  67. <span>2016-07-27【07:30】</span>
  68. <span>上海-千岛湖</span>
  69. <span>徐志涛</span>
  70. <span>14784739457</span>
  71. </li>
  72. <li class="li_content" style="display: none;" id="content_0">
  73. <span>姓名</span>
  74. <span>手机号</span>
  75. <span>父订单号</span>
  76. <span>上车站</span>
  77. <span>下车站</span>
  78. </br>
  79. <span>姓名</span>
  80. <span>手机号</span>
  81. <span>父订单号</span>
  82. <span>上车站</span>
  83. <span>下车站</span>
  84. </li>
  85. </ul>
  86. </div>
  87. </body>
  88. <script type="text/javascript">
  89. $(".date-picker").datepicker({
  90. autoclose: true
  91. }).next().on("click", function() {
  92. $(this).prev().focus();
  93. });
  94. </script>
  95. </html>