| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Module\Fund\Admin\Actions;
- use Dcat\Admin\Grid\RowAction;
- /**
- * 账户流出 circulation
- *
- *
- */
- class Circulation extends RowAction
- {
- public $title = "流转";
- public function allowed()
- {
- //@todo 功能等待开发
- return true;
- }
- public function href(): string
- {
- $id = $this->getKey();
- // dump($id);
- return "/admin/fund-circulation-action?id=" . $id;
- }
- }
|