Circulation.php 455 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Module\Fund\Admin\Actions;
  3. use Dcat\Admin\Grid\RowAction;
  4. /**
  5. * 账户流出 circulation
  6. *
  7. *
  8. */
  9. class Circulation extends RowAction
  10. {
  11. public $title = "流转";
  12. public function allowed()
  13. {
  14. //@todo 功能等待开发
  15. return true;
  16. }
  17. public function href(): string
  18. {
  19. $id = $this->getKey();
  20. // dump($id);
  21. return "/admin/fund-circulation-action?id=" . $id;
  22. }
  23. }