update.php 383 B

12345678910111213141516
  1. <?php
  2. use yii\helpers\Html;
  3. /* @var $this yii\web\View */
  4. /* @var $model common\models\GoodsIndex */
  5. $this->title = Yii::t('common', 'Update Goods Index');
  6. $this->params['breadcrumbs'][] = ['label' => Yii::t('common', '返回'), 'url' =>$origin,'target'=>'_blank'];
  7. ?>
  8. <div class="goods-index-update">
  9. <?= $this->render('_form', [
  10. 'model' => $model,
  11. ]) ?>
  12. </div>