| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Module\System\Admin\Actions;
- use App\Module\System\Enums\CONFIG_TYPE;
- use UCore\DcatAdmin\RowAction;
- /**
- * json固定键值对 动作
- */
- class ConfigEmbedsEditAction extends RowAction
- {
- protected $title = '修改数值';
- use ConfigEditAction;
- public function configEditForm(): string
- {
- return ConfigEmbedsEditForm::class;
- }
- public function allowed()
- {
- return $this->getRow()->type == CONFIG_TYPE::TYPE_EMBEDS->value();
- }
- }
|