|
|
@ -2,6 +2,8 @@ |
|
|
|
|
|
|
|
use yii\helpers\Html; |
|
|
|
use yii\widgets\ActiveForm; |
|
|
|
use antgoods\goods\models\ars\Category; |
|
|
|
use antgoods\goods\models\ars\Brand; |
|
|
|
|
|
|
|
/* @var $this yii\web\View */ |
|
|
|
/* @var $model antgoods\goods\models\ars\Goods */ |
|
|
@ -12,11 +14,9 @@ use yii\widgets\ActiveForm; |
|
|
|
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'pid')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'cat_id')->dropDownList(Category::modelColumn(), ['prompt' => '请选择']) ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'cat_id')->textInput() ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'brand_id')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'brand_id')->dropDownList(Brand::modelColumn(), ['prompt' => '请选择']) ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'shop_cat_id')->textInput() ?>
|
|
|
|
|
|
|
@ -68,8 +68,6 @@ use yii\widgets\ActiveForm; |
|
|
|
|
|
|
|
<?= $form->field($model, 'experience_points')->textInput() ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'is_delete')->textInput() ?>
|
|
|
|
|
|
|
|
<?= $form->field($model, 'express_template')->textInput() ?>
|
|
|
|
|
|
|
|
<div class="form-group"> |
|
|
|