123456789101112131415161718192021222324252627282930313233343536 |
- <?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(Yii::t('common', '新页面'), ['create'], ['class' => 'btn btn-success']) ?>
- <?php $this->endBlock(); ?>
- <div class="box box-success">
- <div class="box-body">
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'columns' => [
- 'id',
- // [
- // 'attribute' => 'use_layout',
- // 'value' => function ($model) {
- // $arr = ['不使用', '使用'];
- // return $arr[$model->use_layout];
- // },
- // ],
- 'title',
- 'slug',
- ['class' => 'common\helpers\DiyActionColumn'],
- ],
- ]); ?>
- </div>
- </div>
|