notice基础内容

This commit is contained in:
2025-06-23 18:13:14 +08:00
parent 1547fffc7e
commit a19e13280a
5 changed files with 137 additions and 1 deletions

View File

@ -7,9 +7,17 @@ use think\admin\Plugin;
class Service extends Plugin
{
protected $appName = '通知提醒';
protected $appCode = 'notice';
public static function menu(): array
{
return [];
return [
[
'name' => '通知提醒',
'subs' => [
['name' => '通知提醒', 'icon' => 'layui-icon layui-icon-cols', 'url' => 'notice/notice/index'],
]
]
];
}
}