1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use yii\grid\GridView;
- /* @var $this yii\web\View */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- //$this->title = '操作记录';
- //$this->params['breadcrumbs'][] = $this->id;
- ?>
- <div class="handle-index">
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'columns' => [
- 'id',
- 'channel',
- 'queue',
- 'msg_delivery_tag',
- // 'addtime',
- // 'describe',
- // 'msg',
- // 'msg_body',
- [
- 'attribute'=>'addtime',
- // 'value'=>function($model){
- // return date('Y-m-d H:i:s',$model->addtime);
- // },
- ],
- ['class' => 'yii\grid\ActionColumn','template'=>'{view}']
- ],
- 'tableOptions'=>['class' => 'table table-striped']
- ]); ?>
- </div>
|