From 410db34acd5e41de800d1602e920ff5ee3e5520f Mon Sep 17 00:00:00 2001 From: liuwei Date: Thu, 16 Apr 2026 16:32:58 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E5=AF=BC=E8=88=AA=E8=B0=83?= =?UTF-8?q?=E6=95=B4=EF=BC=9A=E7=B3=BB=E7=BB=9F=E5=AE=9A=E6=97=B6=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=BD=92=E5=85=A5=E7=B3=BB=E7=BB=9F=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将系统定时任务从消息分组移除 在系统分组新增系统定时任务入口 路由保持 /system_jobs 不变,仅调整菜单归类 --- admin/dashboard/templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/dashboard/templates/base.html b/admin/dashboard/templates/base.html index a60e2dd..6b2f81e 100644 --- a/admin/dashboard/templates/base.html +++ b/admin/dashboard/templates/base.html @@ -779,8 +779,7 @@ defaultPath: '/messages', items: [ { label: '消息列表', path: '/messages' }, - { label: '定时推送', path: '/message_push' }, - { label: '系统定时任务', path: '/system_jobs' } + { label: '定时推送', path: '/message_push' } ] }, { @@ -827,6 +826,7 @@ items: [ { label: '用户统计', path: '/users' }, { label: '资源监控', path: '/system_status' }, + { label: '系统定时任务', path: '/system_jobs' }, { label: '全局配置', path: '/system_llm' }, { label: '文件浏览', path: '/file_browser' }, { label: '运行日志', path: '/wx_logs' },