| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Module\Game\AdminControllers\Tools;
- use UCore\DcatAdmin\Form\Link;
- class RewareGroupInfo extends Link
- {
- protected $title = '奖励组信息';
- public function allowed()
- {
- $groupId = request()->get('group_id');
- return $groupId > 0;
- }
- public function linkHref():string
- {
- $groupId = request()->get('group_id');
- return admin_url('game-reward-groups/' . $groupId );
- }
- }
|