index.php 754 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use yii\grid\GridView;
  3. /* @var $this yii\web\View */
  4. /* @var $dataProvider yii\data\ActiveDataProvider */
  5. $this->title = '采集过的地址';
  6. $this->params['breadcrumbs'][] = $this->title;
  7. ?>
  8. <?php $this->beginBlock('content-header') ?>
  9. <?= $this->title ?>
  10. <?php $this->endBlock() ?>
  11. <div class="box box-success">
  12. <div class="box-body">
  13. <?= GridView::widget([
  14. 'dataProvider' => $dataProvider,
  15. 'columns' => [
  16. 'id',
  17. 'url_org:url',
  18. 'created_at:datetime',
  19. 'updated_at:datetime',
  20. ['class' => 'common\helpers\DiyActionColumn'],
  21. ],
  22. ]); ?>
  23. </div>
  24. </div>