| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace App\Module\Fund\Admin\Actions;
- use Dcat\Admin\Widgets\Modal;
- use UCore\DcatAdmin\RowAction;
- /**
- * Admin 资金处理
- *
- *
- */
- class FundAdminAction extends RowAction
- {
- protected $title = '操作资金';
- public function render2()
- {
- // 实例化表单类并传递自定义参数
- $form = FundAdminForm::make()->payload(['id' => $this->getKey()]);
- return Modal::make()
- ->lg()
- ->title($this->title())
- ->body($form)
- ->button($this->title());
- }
- }
|