feat: 内容稿件列表相关接口对接

This commit is contained in:
rd
2025-07-31 15:07:55 +08:00
parent 41d3f7c93b
commit 9668f2a56d
15 changed files with 409 additions and 145 deletions

View File

@ -71,7 +71,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [
},
{
path: 'check-list',
name: 'ManuscriptCheck',
name: 'ManuscriptCheckList',
meta: {
locale: '内容稿件审核',
requiresAuth: false,
@ -80,6 +80,19 @@ const COMPONENTS: AppRouteRecordRaw[] = [
},
component: () => import('@/views/creative-generation-workshop/manuscript/check/index.vue'),
},
{
path: 'check/:id',
name: 'ManuscriptCheck',
meta: {
locale: '内容稿件审核',
requiresAuth: false,
requireLogin: false,
roles: ['*'],
hideInMenu: true,
activeMenu: 'ManuscriptCheckList',
},
component: () => import('@/views/creative-generation-workshop/manuscript-analysis/components/check/index.vue'),
},
],
},
];