| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Module\System\Admin\Actions;
- /**
- * 图片 动作
- */
- class ConfigImgEditAction extends \UCore\DcatAdmin\RowAction
- {
- protected $title = '修改数值';
- use ConfigEditAction;
- public function configEditForm(): string
- {
- return ConfigImgEditForm::class;
- }
- public function allowed()
- {
- return $this->getRow()->type == \App\Module\System\Enums\CONFIG_TYPE::TYPE_IMG->value();
- }
- }
|