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.
 
 
 
 
 
 

131 lines
4.6 KiB

  1. <?php
  2. use common\components\zGridView;
  3. use backend\modules\motorcade\models\BusOrder;
  4. //获取表头日期
  5. $datearr = BusOrder::getDateArr($data['start_date']);
  6. //对星期的td的列格式处理
  7. $i = 0;
  8. $columns = [];
  9. while ($i < 14) {
  10. $j = 13 - $i;
  11. $z = $i + 1;
  12. $columns[] = [
  13. 'header' => "<a onclick=driverToDetail('" . $datearr['udate'][$j] . "','')>{$datearr['date'][$j]}&nbsp;{$datearr['xingqi'][$j]}</a>",
  14. 'value' => function ($model) use ($datearr, $j, $i, $z) {
  15. $fin = BusOrder::getFinShow($model["date{$z}"]);
  16. if($fin=='空闲')
  17. $color = 'label-info';
  18. elseif($fin=='维保')
  19. $color ='label-default';
  20. else
  21. $color = 'label-success';
  22. $result = "<span><span type='button' style='width: 34px;cursor:pointer' class='label_style label $color' onclick=driverToDetail('" . $datearr['udate'][$j] . "','" . $model['driver_name'] . "')>{$fin}</span></span>";
  23. return $result;
  24. },
  25. 'format' => 'raw',
  26. 'hAlign' => 'center'
  27. ];
  28. $i++;
  29. }
  30. ?>
  31. <style>
  32. .combo-select {
  33. width: 141px;
  34. margin-bottom: 0px;
  35. }
  36. td {
  37. text-align: left;
  38. }
  39. th {
  40. text-align: left;
  41. }
  42. </style>
  43. <div class="iframe_box">
  44. <div class="dis_search">
  45. <div class="form-inline search_first">
  46. <span class="search_name_width">出车日期</span>
  47. <div style="display: inline-block">
  48. <div style="display: inline-block">
  49. <div class="input-group date form_date" style="margin-left: 10px;width: 130px;">
  50. <input class="form-control" size="16" type="text" id="run_date" name="run_date">
  51. <span class="input-group-addon"><span
  52. class="glyphicon glyphicon-calendar"></span></span>
  53. </div>
  54. </div>
  55. </div>
  56. <span class="search_name_width">司机:</span>
  57. <input type="text" class="form-control" name="driver_name" id="driver_name" placeholder="请输入司机姓名,多个姓名用逗号隔开" style="width: 250px"/>
  58. <button type="button" class="btn btn-primary" style="margin-left: 20px" id="submit"
  59. onclick="search_sc()">
  60. <span class="glyphicon glyphicon-search"></span>
  61. 查&nbsp;询
  62. </button>
  63. </div>
  64. </div>
  65. <div class="tab-content" style="padding-top: 0;margin-top: 30px">
  66. <div class="tab-pane active " id="tab1">
  67. <?php \yii\widgets\Pjax::begin(['id' => 'list', 'timeout' => false]) ?>
  68. <?=
  69. zGridView::widget(['dataProvider' => $dataProvider,
  70. 'tableOptions' => ['class' => 'table table-striped table-hover'],
  71. 'emptyText' => '没有匹配的记录',
  72. 'showPageSummary' => false,
  73. 'showEmpty' => true,
  74. 'pagerFixed' => true,
  75. 'columns' => array_merge([
  76. [
  77. 'headerOptions' => ['style' => 'width: 1%'],
  78. 'class' => 'yii\grid\CheckboxColumn'
  79. ],
  80. [
  81. 'headerOptions' => ['style' => 'width: 7%'],
  82. 'label' => '司机',
  83. 'value' => function ($model) {
  84. return $model['driver_name'];
  85. }
  86. ],
  87. [
  88. 'label' => '司贴',
  89. 'value' => function ($model) {
  90. return $model['sitie'];
  91. }
  92. ],
  93. ], $columns),
  94. ]);
  95. $this->registerJs('z.init()');
  96. ?>
  97. <?php \yii\widgets\Pjax::end() ?>
  98. </div>
  99. </div>
  100. </div>
  101. <script>
  102. window.onload = function () {
  103. $("#run_date").val(getDateTime(0));
  104. }
  105. function search_sc() {
  106. loading();
  107. var run_date = $("#run_date").val();
  108. var driver_name = $("#driver_name").val();
  109. $.pjax.reload({
  110. container: '#list',
  111. data: {run_date: run_date, driver_name: driver_name},
  112. replace: false,
  113. timeout: false
  114. })
  115. }
  116. function driverToDetail(date, driver) {
  117. // zNewWin('', '/motorcade/schedule/driver-detail?run_date=' + date + '&driver_name=' + driver)
  118. javascript:window.location='/motorcade/schedule/driver-detail?run_date='+date+'&driver_name='+driver
  119. }
  120. </script>