12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- use yii\grid\GridView;
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = '用户';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $this->beginBlock('content-header') ?>
- <?= $this->title . ' ' . Html::a('新用户', ['create'], ['class' => 'btn btn-primary btn-flat btn-xs']) ?>
- <?php $this->endBlock() ?>
- <!--搜索-->
- <?php echo $this->render('_search', ['model' => $searchModel]); ?>
- <div class="box box-primary">
- <div class="box-body">
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- // 'filterModel' => $searchModel,
- 'columns' => [
- 'id',
- 'pid',
- 'nickname',
- [
- 'attribute' => 'avatar',
- "format" => [
- "image", [
- "width" => "60",
- "height" => "60",
- "class" => 'img-circle'
- ]
- ]
- ],
- 'allRoleDesc:text:角色',
- 'tel',
- 'email',
- 'created_at:datetime',
- 'login_at:datetime',
- [
- 'class' => 'yii\grid\ActionColumn',
- 'template' => '{update} {delete}'
- ]
- ],
- ]); ?>
- </div>
- </div>
|