form-step icon indicating copy to clipboard operation
form-step copied to clipboard

Dcat Admin 分步表单扩展

Results 6 form-step issues
Sort by recently updated
recently updated
newest added

官网的demodown下来也用不了了

靓仔,分步表单的东西都用不上了,可以修复一下吗

可以提交一下 packages 吗?方便 composer 方式的安装。

~~~ protected function form() { return Form::make(new ShopGood(), function (Form $form) { $form->title('商品'); $formStep = $form->multipleSteps(); $formStep->add('商品分类', function ($step) { $step->tree('type_id') ->nodes(ShopType::get()->toArray()) ->setIdColumn('id') ->setTitleColumn('title') ->setParentColumn('pid') ->customFormat(function ($v) { // 格式化外部注入的值...

$step->radio('payment_type', '支付方式') ->options([ '1'=>'xxx', '2'=>'xxx1', '3'=>'xxx2', ]) ->required();