AppearanceImport.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace App\Admin\Actions\Grid;
  3. use App\Admin\Forms\AppearanceImPortForm;
  4. use Dcat\Admin\Grid\RowAction;
  5. use Dcat\Admin\Widgets\Modal;
  6. use Illuminate\Http\Request;
  7. use App\Admin\Repositories\DistAppearance;
  8. use App\Admin\Repositories\DistAppearanceTemplate;
  9. class AppearanceImport extends RowAction
  10. {
  11. public $sourcePath;
  12. public $appearanceId;
  13. /**
  14. * 返回字段标题
  15. *
  16. * @return string
  17. */
  18. public function title()
  19. {
  20. return admin_trans_label('import_tmpl');
  21. }
  22. /**
  23. * 初始化操作
  24. */
  25. public function render()
  26. {
  27. $form = AppearanceImPortForm::make()->payload(['id' => $this->getKey()]);
  28. // 实例化表单类
  29. return Modal::make()
  30. ->lg()
  31. ->title($this->title)
  32. ->body($form)
  33. // 因为此处使用了表单异步加载功能,所以一定要用 onLoad 方法
  34. ->button($this->title());
  35. }
  36. public function confirm()
  37. {
  38. return [
  39. "Are you sure you want to import?",
  40. $this->row->title,
  41. ];
  42. }
  43. /**
  44. * 设置要POST到接口的数据
  45. *
  46. * @return array
  47. */
  48. public function parameters()
  49. {
  50. return [
  51. // 发送当前行 username 字段数据到接口
  52. 'title' => $this->row->title,
  53. 'folder' => $this->row->folder
  54. ];
  55. }
  56. }