['class' => 'container-fluid']]);
echo TabsX::widget([
'bordered' => true,
'items' => [
[
'label' => '
基本信息',
'content' => $this->render('goods', [
'model' => $model,
'form' => $form,
'judgeGoodsCategory' => $judgeGoodsCategory
]),
],
[
'label' => '
筛选规格',
'content' => $this->render('filter_attribute', [
'filterModel' => $filterAttributeModel,
'filterAttrValue' => [],
]),
],
[
'label' => '
商品规格',
'content' => $this->render('attribute', [
'model' => $attributeModel,
'attrValue' => $attrValue,
'goodsModel' => $model,
]),
],
[
'label' => '
详情上传',
'content' => $this->render('new_editor', ['model' => $model,
'form' => $form,
]),
],
[
'label' => '
图片上传',
'content' => $this->render('picture', [
'model' => $model,
'form' => $form,
]),
],
],
'position' => TabsX::POS_ABOVE,
'encodeLabels' => false
]);
?>
= Html::submitButton('保存', ['class' => 'btn btn-success']) ?>
= Html::a('返回', ['index'], ['class' => 'btn btn-info']) ?>