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.
 
 
 
 
 
 

118 line
3.8 KiB

  1. <?php
  2. use backend\modules\motorcade\models\BaseDocument;
  3. /* @var $this yii\web\View */
  4. /* @var $searchModel backend\modules\motorcade\models\searchDocument */
  5. /* @var $dataProvider yii\data\ActiveDataProvider */
  6. $this->title = '司机预警';
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <style>
  10. .c_red {
  11. color: #e02222;
  12. }
  13. .date{
  14. width: 275px!important;
  15. }
  16. .search_name_this {
  17. display: inline-block !important;
  18. /*padding-left: 40px!important;*/
  19. padding-left: 0px !important;
  20. width: 91px !important;
  21. text-align: right !important;
  22. color:#80889a;
  23. }
  24. .search_name {
  25. display: inline-block !important;
  26. /*padding-left: 40px!important;*/
  27. padding-left: 15px !important;
  28. width: 115px !important;
  29. text-align: right !important;;
  30. }
  31. #bussearch-bus_belong > label {
  32. margin-left: 5px;
  33. margin-right: 10px
  34. }
  35. .form-inline {
  36. margin-bottom: 25px;
  37. margin-left: 0px;
  38. }
  39. .form-horizontal .form-group{
  40. margin-right: 0!important;
  41. margin-left: 0!important;
  42. }
  43. .span_left{
  44. width: 90px;text-align:right;display:inline-block;color:#80889a;
  45. }
  46. li>a{
  47. color:#80889a;
  48. }
  49. li>.active>a{
  50. color:#3e4355;
  51. }
  52. .old-nav{
  53. color: #80889a;
  54. cursor: pointer;
  55. }
  56. .old-nav:hover,.old-nav:focus,.old-nav:active{
  57. text-decoration: none;
  58. }
  59. .new-nav{
  60. color: #3e4355;
  61. text-decoration: none;
  62. }
  63. .new-nav:hover,.new-nav:focus,.new-nav:active{
  64. text-decoration: none;
  65. }
  66. label{
  67. color:#80889a;
  68. }
  69. .help-block{
  70. display: none!important;
  71. margin-bottom:6px!important;
  72. }
  73. .pagination{
  74. float: right;
  75. }
  76. .nav_title>li {
  77. width: auto !important;
  78. }
  79. </style>
  80. <?php
  81. $dataProvider1 = unserialize(serialize($dataProvider));
  82. $dataProvider1->query->andFilterWhere(['DOC_OPTION' => BaseDocument::LICENCE_DRIVER]);
  83. $dataProvider2 = unserialize(serialize($dataProvider));
  84. $dataProvider2->query->andFilterWhere(['DOC_OPTION' => BaseDocument::LICENCE_JOB]);
  85. ?>
  86. <?php $this->registerJs('z.init()'); ?>
  87. <div class="iframe_box">
  88. <ul class="nav nav-tabs nav_title" role="tablist" >
  89. <li href="#tab1" role="presentation" class="active" data-toggle="tab">
  90. <a style="cursor: pointer;width:126px;text-align: center">驾驶证
  91. <span class="label label-danger" <?= $dataProvider1->totalCount > 0?$dataProviders1->totalCount : 'style="visibility:hidden"' ?>><?= $dataProvider1->totalCount ?></span>
  92. </a>
  93. </li>
  94. <li href="#tab2"
  95. role="presentation" class="" data-toggle="tab">
  96. <a style="cursor: pointer;width:126px;text-align: center">从业资格证
  97. <span class="label label-danger" <?= $dataProvider2->totalCount > 0?$dataProviders2->totalCount : 'style="visibility:hidden"' ?>><?= $dataProvider2->totalCount ?></span>
  98. </a>
  99. </li>
  100. </ul>
  101. <div class="tab-content table_box">
  102. <div class="tab-pane active" role="tabpanel" id="tab1">
  103. <?php echo $this->render('_driver-tab-1', ['searchModel'=>$searchModel, 'dataProvider'=>$dataProvider1]) ?>
  104. </div>
  105. <div class="tab-pane" role="tabpanel" id="tab2">
  106. <?php echo $this->render('_driver-tab-2', ['searchModel'=>$searchModel, 'dataProvider'=>$dataProvider2]) ?>
  107. </div>
  108. </div>
  109. </div>
  110. <?php echo $this->render('_images_bus') ?>