1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use yii\grid\GridView;
- ?>
- <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){
- ],
- ['class' => 'yii\grid\ActionColumn','template'=>'{view}']
- ],
- 'tableOptions'=>['class' => 'table table-striped']
- ]); ?>
- </div>
|