index.php 749 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use yii\grid\GridView;
  3. use yii\helpers\Html;
  4. /* @var $this yii\web\View */
  5. /* @var $dataProvider yii\data\ActiveDataProvider */
  6. $this->title = '政策列表';
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <?php $this->beginBlock('content-header'); ?>
  10. <?= $this->title . ' ' . Html::a(Yii::t('common', '新增政策'), ['create'], ['class' => 'btn btn-success']) ?>
  11. <?php $this->endBlock(); ?>
  12. <div class="box box-success">
  13. <div class="box-body">
  14. <?= GridView::widget([
  15. 'dataProvider' => $dataProvider,
  16. 'columns' => [
  17. 'id',
  18. 'title',
  19. 'author',
  20. 'created_at:datetime',
  21. ['class' => 'common\helpers\DiyActionColumn'],
  22. ],
  23. ]); ?>
  24. </div>
  25. </div>