| 12345678910111213141516171819202122232425262728293031323334 | <?phpuse yii\grid\GridView;use yii\helpers\Html;/* @var $this yii\web\View *//* @var $dataProvider yii\data\ActiveDataProvider */$this->title = '导航';$this->params['breadcrumbs'][] = $this->title;?><?php $this->beginBlock('content-header') ?><?= $this->title . ' ' . Html::a('新导航', ['create'], ['class' => 'btn btn-success']) ?><?php $this->endBlock() ?><div class="box box-success">    <div class="box-body"><?php echo GridView::widget([    'dataProvider' => $dataProvider,    'columns' => [        'id',        'key',        'title',        [            'class' => 'common\helpers\DiyActionColumn',            'template'=>'{update} {delete}'        ],    ],]); ?>    </div></div>
 |