|
@ -2,6 +2,7 @@ |
|
|
|
|
|
|
|
|
use yii\helpers\Html; |
|
|
use yii\helpers\Html; |
|
|
use yii\widgets\ActiveForm; |
|
|
use yii\widgets\ActiveForm; |
|
|
|
|
|
use blobt\widgets\Icheck; |
|
|
|
|
|
|
|
|
/* @var $this yii\web\View */ |
|
|
/* @var $this yii\web\View */ |
|
|
/* @var $model antgoods\goods\models\ars\Category */ |
|
|
/* @var $model antgoods\goods\models\ars\Category */ |
|
@ -22,9 +23,7 @@ use yii\widgets\ActiveForm; |
|
|
|
|
|
|
|
|
<?= $form->field($model, 'icon')->textInput(['maxlength' => true]) ?>
|
|
|
<?= $form->field($model, 'icon')->textInput(['maxlength' => true]) ?>
|
|
|
|
|
|
|
|
|
<?= $form->field($model, 'is_show')->textInput() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= $form->field($model, 'is_delete')->textInput() ?>
|
|
|
|
|
|
|
|
|
<?= $form->field($model, 'is_show')->widget(Icheck::className(), ["items" => $model::$isShow, 'type' => "radio"]) ?>
|
|
|
|
|
|
|
|
|
<div class="form-group"> |
|
|
<div class="form-group"> |
|
|
<?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
|
|
|
<?= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
|
|
|