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