fix(host): Host 控制器禁用手动增删改与按钮配置修正

HostBase 补 add/edit/delete/modify 禁用方法(节点自动注册,不支持手动操作)。_common.js 的 addUrl/editUrl/deleteUrl/exportUrl/modifyUrl 改空字符串。index.js 补 toolbar: ['refresh'](C 类页面,去掉默认的 add/delete/export)。

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
augushong
2026-07-25 22:40:05 +08:00
parent 908f84ee9f
commit 739b536f8d
3 changed files with 39 additions and 5 deletions

View File

@@ -3,6 +3,7 @@
namespace base\admin\controller\system;
use app\admin\service\annotation\ControllerAnnotation;
use app\admin\service\annotation\NodeAnotation;
use app\common\controller\AdminController;
use think\App;
@@ -42,4 +43,36 @@ class HostBase extends AdminController
$this->error('节点不存在');
}
}
/**
* @NodeAnotation(title="添加")
*/
public function add()
{
$this->error('主机节点由系统自动注册,不支持手动添加');
}
/**
* @NodeAnotation(title="编辑")
*/
public function edit($id)
{
$this->error('主机节点信息由系统自动采集,不支持编辑');
}
/**
* @NodeAnotation(title="删除")
*/
public function delete($id)
{
$this->error('主机节点由系统管理,不支持删除');
}
/**
* @NodeAnotation(title="属性修改")
*/
public function modify()
{
$this->error('主机节点由系统管理,不支持修改');
}
}