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.
 
 
 
 
 
 

18 line
319 B

  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model backend\modules\motorcade\models\BaseDriver */
  5. /* @var $tab string */
  6. $this->title = '添加司机';
  7. ?>
  8. <div class="base-driver-create">
  9. <?= $this->render('_form', [
  10. 'model' => $model, 'tab' => $tab, 'type'=> ''
  11. ]) ?>
  12. </div>