mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-08-31 05:05:33 +08:00
控制器逻辑移入 extend/base/admin/controller/system/TimerConfigBase.php,app 层改为空壳继承。9 个视图文件迁移到 extend/base/admin/view/system/timer_config/。index.js 补 toolbar: ['refresh', 'export'] 声明(C 类页面,去掉默认的 add/delete)。 Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
10 lines
144 B
PHP
10 lines
144 B
PHP
<?php
|
|
|
|
namespace app\admin\controller\system;
|
|
|
|
use base\admin\controller\system\TimerConfigBase;
|
|
|
|
class TimerConfig extends TimerConfigBase
|
|
{
|
|
}
|