SmmAddAccount.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace App\Distributor\Actions;
  3. use App\Distributor\Forms\ImportProduct;
  4. use Dcat\Admin\Grid\Tools\AbstractTool;
  5. use Dcat\Admin\Widgets\Modal;
  6. use App\Distributor\Forms\SmmAddAccount as SmmAddAccountForm;
  7. class SmmAddAccount extends AbstractTool
  8. {
  9. protected $style = 'btn btn-primary';
  10. protected $title = 'add_platform_account';
  11. public function title()
  12. {
  13. return '<i class="feather icon-user-plus"></i> &nbsp;'.admin_trans('admin.add_platform_account');
  14. }
  15. public function render()
  16. {
  17. // 实例化表单类
  18. $form = SmmAddAccountForm::make();
  19. return Modal::make()
  20. ->lg()
  21. ->title(admin_trans_label($this->title))
  22. ->body($form)
  23. // 因为此处使用了表单异步加载功能,所以一定要用 onLoad 方法
  24. // 如果是非异步方式加载表单,则需要改成 onShow 方法
  25. ->button($this->getButtonHTML());
  26. }
  27. protected function getButtonHTML()
  28. {
  29. $title= $this->title();
  30. return <<<HTML
  31. <button class="btn btn-success">
  32. <i class="feather"></i> {$title}
  33. </button>
  34. HTML;
  35. }
  36. }