1234567891011121314151617 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Page */
- $this->title = '新增政策';
- $this->params['breadcrumbs'][] = ['label' => '政策管理', 'url' => ['index']];
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="page-create">
- <?= $this->render('_form', [
- 'model' => $model,
- 'configModels' => $configModels,
- ]) ?>
- </div>
|