feat: audit

This commit is contained in:
zzc
2026-06-15 15:37:27 +08:00
parent 2d84ee213c
commit 4fb04c2be8
4 changed files with 211 additions and 5 deletions

View File

@@ -118,10 +118,30 @@ export const asyncRoutes = [
],
},
{
path: 'topic-review',
name: 'RatingTopicReviewIndex',
component: () => import('@/views/rating/topicReview/index'),
meta: { title: '话题审核' },
path: '审核',
component: EmptyLayout,
alwaysShow: true,
redirect: 'noRedirect',
name: 'AuditIndex',
meta: {
title: '审核',
icon: 'clover',
permissions: ['admin'],
},
children: [
{
path: 'topic-review',
name: 'RatingTopicReviewIndex',
component: () => import('@/views/rating/topicReview/index'),
meta: { title: '话题审核' },
},
{
path: 'item-review',
name: 'RatingTopicItemReviewIndex',
component: () => import('@/views/rating/topicItemReview/index'),
meta: { title: '评分项审核' },
},
],
},
],
},