| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Module\Dev\Admin\Actions;
- use Dcat\Admin\Widgets\Modal;
- use UCore\DcatAdmin\Form\AbstractTool;
- class SessionLoginAction extends AbstractTool
- {
- protected $title = '登录';
- public function render()
- {
- // 实例化表单类并传递自定义参数
- $form = SessionLoginForm::make()->payload(['id' => $this->getKey()]);
- return Modal::make()
- ->lg()
- ->title($this->title())
- ->body($form)
- ->button($this->title());
- }
- }
|