create.php 411 B

123456789101112131415161718
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Page */
  4. $this->title = '新增 - ' . $type;
  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. 'type' => $type,
  12. 'configModels' => $configModels,
  13. ]) ?>
  14. </div>