update.php 533 B

12345678910111213141516171819
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Category */
  4. /* @var $childCateList [] */
  5. $this->title = '更新分类: '.' '.$model->title;
  6. $this->params['breadcrumbs'][] = ['label' => '分类', 'url' => ['index']];
  7. $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
  8. $this->params['breadcrumbs'][] = '更新';
  9. ?>
  10. <div class="category-update">
  11. <?= $this->render('_form', [
  12. 'model' => $model,
  13. 'childCateList' => $childCateList,
  14. ]) ?>
  15. </div>