feat: 赛事管理操作日志与审计页体验优化

- API 为赛事/联赛/盘口/赔率/冠军盘写操作写入 CATALOG 审计日志,并新增 catalog-audit-logs 接口

- 管理端将赛事日志独立至赛事管理子页,通用操作日志排除 CATALOG 模块

- 统一赛事子页 list-chrome 布局与面包屑;修复操作日志页表格滚动与分页不可见问题

- 补充中英文/马来语文案及 UAT 验收项 SEC013/SEC014

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-16 10:00:24 +08:00
parent 567ec9ec8a
commit 2a8b8415e7
17 changed files with 850 additions and 216 deletions

View File

@@ -86,6 +86,11 @@ const router = createRouter({
component: () => import('../views/MarketTemplates.vue'),
meta: { adminOnly: true, permissions: [AdminPerm.matches] },
},
{
path: 'matches/audit-logs',
component: () => import('../views/MatchesAudit.vue'),
meta: { adminOnly: true, permissions: [AdminPerm.matches] },
},
{
path: 'matches/:matchId/edit',
name: 'admin-match-edit',