| 123456789101112131415161718 | <?php/* @var $this yii\web\View *//* @var $model common\models\Page */$this->title = $type.' - '.$model->title;$this->params['breadcrumbs'][] = ['label' => '人才计算器', 'url' => ['index']];$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];$this->params['breadcrumbs'][] = 'Update';?><div class="page-update">    <?= $this->render('_form', [        'model' => $model,		'configModels' => $configModels,    ]) ?></div>
 |