1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model backend\models\Admin */
- //$this->title = '操作记录: '.$model->title;
- $this->params['breadcrumbs'][] = ['label' => 'rabbitmq记录', 'url' => ['index']];
- //$this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="admin-view">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'channel',
- 'queue',
- 'msg_delivery_tag',
- 'describe',
- 'msg',
- 'msg_body',
- 'addtime',
- ],
- ]) ?>
- </div>
|