feat: 客户分享链接列表

This commit is contained in:
rd
2025-08-07 18:05:27 +08:00
parent de55e00196
commit d07f773123
17 changed files with 678 additions and 115 deletions

View File

@ -111,6 +111,28 @@ const COMPONENTS: AppRouteRecordRaw[] = [
},
],
},
{
path: '/explore/list/:shareCode',
name: 'ExploreList',
meta: {
locale: '分享链接列表',
requiresAuth: false,
requireLogin: false,
roles: ['*'],
},
component: () => import('@/views/creative-generation-workshop/explore/list/index.vue'),
},
{
path: '/explore/detail/:shareCode/:id',
name: 'ExploreDetail',
meta: {
locale: '分享链接详情',
requiresAuth: false,
requireLogin: false,
roles: ['*'],
},
component: () => import('@/views/creative-generation-workshop/explore/detail/index.vue'),
},
];
export default COMPONENTS;