You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

245 lines
12 KiB

  1. <?php
  2. use backend\modules\zzcs\assets\ZzcsAsset;
  3. ZzcsAsset::addCss($this, '/global/css/bootstrap.min.css');
  4. ZzcsAsset::addCss($this, '/global/css/font-awesome.min.css');
  5. //ZzcsAsset::addCss($this, '/global/css/ace.min.css');
  6. //ZzcsAsset::addCss($this, '/global/css/master.css');
  7. ZzcsAsset::addCss($this, '/global/css/sweetalert2.min.css');
  8. ZzcsAsset::addCss($this, '/run-bus/css/run_detail.css');
  9. ZzcsAsset::addScript($this, '/global/js/jquery-2.2.4.min.js');
  10. ZzcsAsset::addScript($this, '/global/js/jquery.cookie.js');
  11. ZzcsAsset::addScript($this, '/global/js/sweetalert2.min.js');
  12. ZzcsAsset::addScript($this, '/global/js/ace-extra.min.js');
  13. //ZzcsAsset::addScript($this, '/global/js/common.js?v001');
  14. //ZzcsAsset::addScript($this, '/global/js/base_path.js?v001');
  15. ZzcsAsset::addScript($this, '/run-bus/js/run_detail.js');
  16. ZzcsAsset::addScript($this, '/plug/layer/layer.js');
  17. ?>
  18. <body>
  19. <div id="">
  20. <ul class="nav nav-tabs" id="myTab" style="width: 1200px;margin-left: 20px;">
  21. <li id="li_basic">
  22. <a style="cursor: pointer;background: #DDDDDD" ; onclick="type_choose('基本信息')">基本信息</a>
  23. </li>
  24. <li id="li_carInfo">
  25. <a style="cursor: pointer;" onclick="type_choose('车票信息')">车票信息</a>
  26. </li>
  27. </ul>
  28. <input type="text" style="display: none;" value="<?php echo $run_id?>" class="run_id">
  29. <!--基本信息-->
  30. <div style="float: left;display: none" id="carBasicInfo" class="carBasicInfo">
  31. <div class="tabbable">
  32. <div class="profile-user-info profile-user-info-striped" style="margin-top: 40px;margin-left: 20px;">
  33. <div class="profile-info-row">
  34. <div class="profile-info-name"><span style="letter-spacing:26px;">线</span>路:</div>
  35. <div class="profile-info-value">
  36. <span class="editable editable-click" id="startarea">SHWX001&nbsp;(上海-乌镇)</span>
  37. </div>
  38. </div>
  39. <div class="profile-info-row">
  40. <div class="profile-info-name">出发时间:</div>
  41. <div class="profile-info-value">
  42. <span class="editable editable-click" id="starttime">2016.05.20&nbsp;&nbsp;&nbsp;&nbsp;07:30</span>
  43. </div>
  44. </div>
  45. <!--途径站点-->
  46. <div class="profile-info-row">
  47. <div class="profile-info-name">途径站点:</div>
  48. <div class="profile-info-value">
  49. <div class="row">
  50. <div class="col-xs-12">
  51. <div style="width: 470px;" class="table-responsive">
  52. <table width="470px" id="sample-table-1" class="table table-striped table-bordered table-hover">
  53. <thead>
  54. <tr>
  55. <th width="90px">时间</th>
  56. <th width="200px">站点</th>
  57. <th width="90px">上下类型</th>
  58. <th width="90px">检票口</th>
  59. </tr>
  60. </thead>
  61. <tbody id="tujingstation">
  62. <tr>
  63. <td>[时间]</td>
  64. <td>[站点]</td>
  65. <td>[上下类型]</td>
  66. <td>[检票口]</td>
  67. </tr>
  68. </tbody>
  69. </table>
  70. </div>
  71. <!-- /.table-responsive -->
  72. </div>
  73. <!-- /span -->
  74. </div>
  75. <!--row end-->
  76. </div>
  77. </div>
  78. <!--班次状态-->
  79. <div class="profile-info-row">
  80. <div class="profile-info-name">班次状态:</div>
  81. <div class="profile-info-value">
  82. <span class="editable editable-click" id="bancistatus">已调派</span>
  83. </div>
  84. </div>
  85. <!--收客状态-->
  86. <!--<div class="profile-info-row" style="display: none;">
  87. <div class="profile-info-name">收客状态:</div>
  88. <div class="profile-info-value">
  89. <span class="editable editable-click" id="shoukestatus">开</span>
  90. </div>
  91. </div>-->
  92. <!--承运信息-->
  93. <div class="profile-info-row">
  94. <div class="profile-info-name">车次:</div>
  95. <div class="profile-info-value">
  96. <div class="row">
  97. <div class="col-xs-12">
  98. <div style="width: 470px;" class="table-responsive">
  99. <table width="470px" id="sample-table-1" class="table table-striped table-bordered table-hover">
  100. <thead>
  101. <tr>
  102. <th width="60px">车次</th>
  103. <!--<th width="190px">品牌</th>-->
  104. <th width="190px">座位</th>
  105. <!-- <th width="80px">选座支持</th>
  106. <th width="70px">车辆</th>
  107. <th width="70px">司机</th> -->
  108. </tr>
  109. </thead>
  110. <tbody id="chenyun">
  111. <tr>
  112. <td>[车次]</td>
  113. <!--<td>[品牌]</td>-->
  114. <td>[座位]</td>
  115. <!-- <td>[选座支持]</td>
  116. <td>[车辆]</td>
  117. <td>[司机]</td> -->
  118. </tr>
  119. </tbody>
  120. </table>
  121. </div>
  122. <!-- /.table-responsive -->
  123. </div>
  124. <!-- /span -->
  125. </div>
  126. <!--row end-->
  127. </div>
  128. </div>
  129. <!--可售票种-->
  130. <div class="profile-info-row">
  131. <div class="profile-info-name"><span style="letter-spacing:26px;">票</span>种:</div>
  132. <div class="profile-info-value">
  133. <div class="row">
  134. <div class="col-xs-12">
  135. <div style="width: 530px;" class="table-responsive">
  136. <table width="530px" id="sample-table-1" class="table table-striped table-bordered table-hover">
  137. <thead>
  138. <tr>
  139. <th style="width: 90px">出发地</th>
  140. <th style="width: 90px">目的地</th>
  141. <th style="width: 80px">座位等级</th>
  142. <!--<th style="width: 80px;display: none;">人群</th>-->
  143. <th style="width: 70px">分销价</th>
  144. <th style="width: 60px;display: none;">最大可售</th>
  145. <!--<th style="width: 60px">已售</th>-->
  146. </tr>
  147. </thead>
  148. <tbody id="keshouTicket">
  149. <tr>
  150. <td>[出发地]</td>
  151. <td>[目的地]</td>
  152. <td>[座位]</td>
  153. <!--<td style="display: none;">[人群]</td>-->
  154. <td>[零售价]</td>
  155. <td style="display: none;">[最大可售]</td>
  156. <!--<td>[已售]</td>-->
  157. </tr>
  158. </tbody>
  159. </table>
  160. </div>
  161. <!-- /.table-responsive -->
  162. </div>
  163. <!-- /span -->
  164. </div>
  165. <!--row end-->
  166. </div>
  167. </div>
  168. <!--预售天数-->
  169. <!--<div class="profile-info-row">
  170. <div class="profile-info-name">预售天数:</div>
  171. <div class="profile-info-value">
  172. <span class="editable editable-click" id="yushoudays">60天</span>
  173. </div>
  174. </div>-->
  175. </div>
  176. </div>
  177. <!--tabbable end-->
  178. </div>
  179. <!--车票信息-->
  180. <div id="carTicketInfo" class="carTicketInfo" style="float:left;display: none;">
  181. <!--style="margin-bottom: 3px; border-bottom: 1px solid gray;width:inherit;"-->
  182. <div class="tabbable">
  183. <div class="row" style="margin-top: 30px;">
  184. <div class="col-xs-12">
  185. <div class="table-responsive" style="width: 1220px;">
  186. <table width="1220px" id="sample-table-1" class="table table-striped table-bordered table-hover">
  187. <thead>
  188. <tr>
  189. <th width="90px">出发地</th>
  190. <th width="90px">目的地</th>
  191. <th width="120px">上</th>
  192. <th width="120px">下</th>
  193. <th width="140">出行时间</th>
  194. <th width="80px">车次</th>
  195. <th width="80px">座位等级</th>
  196. <!--<th width="80px">人群</th>-->
  197. <th width="60px">座号</th>
  198. <th width="60px">售价</th>
  199. <th width="80px">出票</th>
  200. <th width="80px">打印</th>
  201. <th width="140px">操作</th>
  202. </tr>
  203. </thead>
  204. <tbody id="ticketList">
  205. <tr id="one" class="one">
  206. <td>[出发地]</td>
  207. <td>[目的地]</td>
  208. <td>[上]</td>
  209. <td>[下]</td>
  210. <td>[出行时间]</td>
  211. <td>[车次]</td>
  212. <td>[座位]</td>
  213. <!--<td>[人群]</td>-->
  214. <td>[座号]</td>
  215. <td>[售价]</td>
  216. <td>[出票]</td>
  217. <td>[打印]</td>
  218. <td>[操作]</td>
  219. </tr>
  220. </tbody>
  221. </table>
  222. </div>
  223. <!-- /.table-responsive -->
  224. </div>
  225. <!-- /span -->
  226. </div>
  227. <!--row end-->
  228. </div>
  229. <!--tabbable end-->
  230. </div>
  231. <!--</div>-->
  232. </div>
  233. </body>