12345678910111213141516171819202122232425262728293031 |
- <?php
- use yii\widgets\DetailView;
- /* @var $this yii\web\View */
- /* @var $model backend\models\Admin */
- $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',
- // 'addtime:datetime',
- 'admin_ip',
- 'admin_agent',
- 'handle_id',
- 'type',
- 'model',
- 'result'
- ],
- ]) ?>
- </div>
|