create.php 502 B

123456789101112131415161718192021
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Page */
  4. /* @var $configModels [] */
  5. /* @var $cengciModels [] */
  6. $this->title = '新增 - ' . $type;
  7. $this->params['breadcrumbs'][] = ['label' => '人才计算器', 'url' => ['index']];
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="page-create">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. 'type' => $type,
  14. 'configModels' => $configModels,
  15. 'cengciModels' => $cengciModels,
  16. ]) ?>
  17. </div>