create.php 378 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Page */
  4. $this->title = '新增政策';
  5. $this->params['breadcrumbs'][] = ['label' => '政策管理', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = $this->title;
  7. ?>
  8. <div class="page-create">
  9. <?= $this->render('_form', [
  10. 'model' => $model,
  11. 'configModels' => $configModels,
  12. ]) ?>
  13. </div>