我如何在 yii2 中添加 select 标签来搜索模型?

How can i add select tag to search model in yii2?

我想select列表中的航空公司这是代码:

        <div class="col-lg-2">
          <?= $form->field($model, 'Airline') ?>  
        </div>
        <div class="col-lg-2">
            <?= Html::label('Bdate', 'Bdate') ?>              
            <?= Html::activeInput('date', $model ,'Bdate',['class'=>'form-control']) ?>
        </div>

<?= $form->field($model, 'some_column')->dropdownList(['1' => 'aaa', '2' => 'bbb'], ['prompt' => '---Select Data---']) ?> 这里是 yii2 下拉列表的最简单视图