| 1234567891011121314151617181920212223242526272829 | <?phpuse yii\grid\GridView;/* @var $this yii\web\View *//* @var $dataProvider yii\data\ActiveDataProvider */$this->title = '采集过的地址';$this->params['breadcrumbs'][] = $this->title;?><?php $this->beginBlock('content-header') ?><?= $this->title ?><?php $this->endBlock() ?>    <div class="box box-success">        <div class="box-body">            <?= GridView::widget([                'dataProvider' => $dataProvider,                'columns' => [                    'id',                    'url_org:url',                    'created_at:datetime',                    'updated_at:datetime',                    ['class' => 'common\helpers\DiyActionColumn'],                ],            ]); ?>        </div>    </div>
 |