链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
495 B

6 years ago
  1. <?php
  2. namespace App\Admin\Extensions;
  3. use Dcat\Admin\Grid\RowAction;
  4. use Illuminate\Http\Request;
  5. class OrderPrint extends RowAction
  6. {
  7. protected $title;
  8. public function __construct($title=null)
  9. {
  10. parent::__construct($title);
  11. }
  12. public function handle(Request $request)
  13. {
  14. $id = $this->getKey();
  15. dd($id);
  16. }
  17. /**
  18. * 设置要POST到接口的数据
  19. *
  20. * @return array
  21. */
  22. public function parameters()
  23. {
  24. }
  25. }