- API 为赛事/联赛/盘口/赔率/冠军盘写操作写入 CATALOG 审计日志,并新增 catalog-audit-logs 接口 - 管理端将赛事日志独立至赛事管理子页,通用操作日志排除 CATALOG 模块 - 统一赛事子页 list-chrome 布局与面包屑;修复操作日志页表格滚动与分页不可见问题 - 补充中英文/马来语文案及 UAT 验收项 SEC013/SEC014 Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
555 B
Vue
22 lines
555 B
Vue
<script setup lang="ts">
|
|
import MatchesSubNav from '../components/MatchesSubNav.vue';
|
|
import AuditLogTable from '../components/AuditLogTable.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="admin-list-page matches-page">
|
|
<div class="list-chrome">
|
|
<div class="list-chrome__row">
|
|
<div class="list-chrome__left">
|
|
<MatchesSubNav embedded />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<AuditLogTable
|
|
endpoint="/admin/catalog-audit-logs"
|
|
:show-module-column="false"
|
|
:show-module-filter="false"
|
|
/>
|
|
</div>
|
|
</template>
|