add share record

This commit is contained in:
lejianwen
2024-12-13 12:31:00 +08:00
parent 2ea5a6eab3
commit 502bea8dc3
10 changed files with 392 additions and 0 deletions
+12
View File
@@ -85,6 +85,12 @@ export const asyncRoutes = [
meta: { title: 'Tags', icon: 'CollectionTag' /*keepAlive: true*/ },
component: () => import('@/views/my/tag/index.vue'),
},
{
path: 'shareRecord',
name: 'MyShareRecordList',
meta: { title: 'ShareRecord', icon: 'Share' /*keepAlive: true*/ },
component: () => import('@/views/my/share_record/index.vue'),
},
],
},
{
@@ -172,6 +178,12 @@ export const asyncRoutes = [
meta: { title: 'AuditFileLog', icon: 'Files' /*keepAlive: true*/ },
component: () => import('@/views/audit/fileList.vue'),
},
{
path: '/shareRecord',
name: 'ShareRecord',
meta: { title: 'ShareRecord', icon: 'Share' /*keepAlive: true*/ },
component: () => import('@/views/share_record/index.vue'),
},
],
},
]