login.php 640 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use yii\widgets\DetailView;
  3. /* @var $this yii\web\View */
  4. /* @var $model backend\models\Admin */
  5. $this->title = '操作记录: '.$model->title;
  6. $this->params['breadcrumbs'][] = ['label' => '操作记录', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = $this->title;
  8. ?>
  9. <div class="admin-view">
  10. <?= DetailView::widget([
  11. 'model' => $model,
  12. 'attributes' => [
  13. 'id',
  14. 'admin_name',
  15. 'addtime:datetime',
  16. 'admin_ip',
  17. 'admin_agent',
  18. 'controller',
  19. 'action',
  20. 'objId',
  21. 'result'
  22. ],
  23. ]) ?>
  24. </div>