|
- <?php
- use yii\helpers\Html;
- use yii\helpers\ArrayHelper;
- use backend\modules\motorcade\models\BusDepartment;
- use common\components\zGridView;
- use backend\modules\motorcade\models\BusOrder;
- use backend\modules\motorcade\models\BaseBus;
-
- ?>
- <style>
- .combo-select {
- width: 141px;
- margin-bottom: 0px;
- }
-
- </style>
- <div class="iframe_box">
- <div class="dis_search">
- <div class="form-inline search_first">
- <span class="search_name_width">出车日期</span>
- <div style="display: inline-block">
- <div style="display: inline-block">
- <div class="input-group date form_date" style="margin-left: 10px;width: 130px;">
- <input class="form-control" size="16" type="text" id="run_date" name="run_date"
- value="<?= $data['run_date'] ?>">
- <span class="input-group-addon"><span
- class="glyphicon glyphicon-calendar"></span></span>
- </div>
- </div>
- </div>
-
- <span class="search_name_width">司机:</span>
- <input type="text" class="form-control" name="driver_name" value="<?= $data['driver_name'] ?>"
- id="driver_name" placeholder="请输入司机姓名"/>
-
- <button type="button" class="btn btn-primary" style="margin-left: 20px" id="submit"
- onclick="search_sc()">
- <span class="glyphicon glyphicon-search"></span>
- 查 询
- </button>
- </div>
- </div>
- <div class="tab-content" style="padding-top: 0;margin-top: 30px">
- <div class="tab-pane active " id="tab1">
- <?php \yii\widgets\Pjax::begin(['id' => 'list', 'timeout' => false]) ?>
- <?=
- zGridView::widget([
- 'dataProvider' => $dataProvider,
- 'tableOptions' => ['class' => 'table table-striped table-hover'],
- 'emptyText' => '没有匹配的记录',
- 'showPageSummary' => false,
- 'showEmpty' => true,
- 'pagerFixed' => true,
- 'columns' => [
- ['label' => '司机姓名', 'attribute' => 'driver_name'],
- [
- 'label' => '出车单号',
- 'value' => function ($model) {
- if ($model['bus_number_name'] == '' && $model['depart_name'] != 'wb')
- return '<span class="label label-info">空闲</span>';
- else if ($model['depart_name'] == 'wb')
- return "<span class='label label-default'>维保</span>";
- else
- return "<a onclick='driverToDetail({$model['id']})'>{$model['bus_number_name']}</a>";
- },
- 'format' => 'raw'
- ],
- [
- 'label' => '客户名称',
- 'value' => function ($model) {
- if ($model['depart_name'] == 'wb')
- return '';
- else
- return $model['depart_name'];
- }],
- [
- 'label' => '开始日期',
- 'value' => function ($model) {
- if ($model['run_date_name'] == '') {
- return '-';
- } else
- return $model['run_date_name'] . ' ' . $model['start_time'];
- }
- ],
- [
- 'label' => '结束日期',
- 'value' => function ($model) {
- $day = $model['day_num'];
- $_ = strtotime($model['run_date_name'] . "+$day day");
- $tp = date('Y-m-d', $_);
- $time = $model['end_time'];
- if ($model['bus_number_name'] == '维保' || $model['bus_number_name'] == '')
- return '-';
- else
- return $tp . ' ' . $time;
- }
- ],
- ['label' => '线路名称', 'attribute' => 'itinerary_name'],
- [
- 'label' => '类型',
- 'value' => function ($model) {
- if ($model['line_type'] == 1)
- return '省际';
- elseif ($model['line_type'] == 2)
- return '市内';
- else
- return '-';
- }],
- [
- 'label' => '乘客数',
- 'value' => function ($model) {
- if ($model['bus_number_name'] == '维保')
- return '';
- else
- return $model['saled_count'];
- }
- ],
- ['label' => '车牌号', 'attribute' => 'bus_no'],
- ['label' => '状态', 'attribute' => 'run_status_name']
-
- ],
- ]);
- $this->registerJs('z.init()');
- ?>
- <?php \yii\widgets\Pjax::end() ?>
- </div>
- </div>
- </div>
- <script>
- function search_sc() {
- loading();
- var run_date = $("#run_date").val();
- var driver_name = $("#driver_name").val();
- $.pjax.reload({
- container: '#list',
- data: {run_date: run_date, driver_name: driver_name},
- replace: false,
- timeout: false
- })
- }
- function driverToDetail(bus_number) {
- zNewWin('motorcade', '/motorcade/bus/detail?id=' + bus_number)
- }
- </script>
|