1234567891011121314151617181920212223242526272829 |
- <?php
- use yii\widgets\DetailView;
- $this->title = '操作记录: '.$model->title;
- $this->params['breadcrumbs'][] = ['label' => '操作记录', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="admin-view">
- <?= DetailView::widget([
- 'model' => $model,
- 'attributes' => [
- 'id',
- 'admin_name',
- 'addtime:datetime',
- 'admin_ip',
- 'admin_agent',
- 'controller',
- 'action',
- 'objId',
- 'result'
- ],
- ]) ?>
- </div>
|