123456789101112131415161718 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model common\models\GoodsSku */
- $this->title = Yii::t('common', 'Update Goods Sku');
- ?>
- <div class="goods-sku-update">
- <?= $this->render('_form', [
- 'model' => $model,
- 'goods' => $goods,
- ]) ?>
- </div>
|