feat: 脚本管理页面(类似青龙面板)
Some checks failed
continuous-integration/drone/push Build is failing

- 新增脚本管理页面,左右分栏布局
- 集成 Monaco Editor 代码编辑器(语法高亮、行号、快捷键)
- 支持脚本 CRUD、运行、复制等操作
- 定时任务支持从脚本库导入脚本
- 新增 platform_scripts 表存储脚本
This commit is contained in:
2026-01-28 13:13:08 +08:00
parent 9b72e6127f
commit 2f9d85edb6
8 changed files with 1372 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ const menuItems = computed(() => {
{ path: '/tenant-wechat-apps', title: '企微应用', icon: 'ChatDotRound' },
{ path: '/app-config', title: '租户订阅', icon: 'Setting' },
{ path: '/scheduled-tasks', title: '定时任务', icon: 'Clock' },
{ path: '/scripts', title: '脚本管理', icon: 'Tickets' },
{ path: '/stats', title: '统计分析', icon: 'TrendCharts' },
{ path: '/logs', title: '日志查看', icon: 'Document' }
]