feat: 账号数据看板/ 统一table、checkbox组件样式

This commit is contained in:
rd
2025-06-28 11:31:49 +08:00
parent 80c6b30701
commit 3b1f85c47d
16 changed files with 542 additions and 113 deletions

View File

@ -46,7 +46,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [
},
children: [
{
path: 'accountManagement',
path: 'manage',
name: 'MediaAccountAccountManagement',
meta: {
locale: '账号管理',
@ -56,7 +56,7 @@ const COMPONENTS: AppRouteRecordRaw[] = [
component: () => import('@/views/property-marketing/media-account/account-manage'),
},
{
path: 'accountDashboard',
path: 'dashboard',
name: 'MediaAccountAccountDashboard',
meta: {
locale: '账号数据看板',
@ -66,14 +66,16 @@ const COMPONENTS: AppRouteRecordRaw[] = [
component: () => import('@/views/property-marketing/media-account/account-dashboard'),
},
{
path: 'accountDetails',
path: 'detail/:id',
name: 'MediaAccountAccountDetails',
meta: {
locale: '账号详情',
requiresAuth: true,
roles: ['*'],
hideInMenu: true,
activeMenu: 'MediaAccountAccountDashboard',
},
component: () => import('@/views/property-marketing/repository/test'),
component: () => import('@/views/property-marketing/media-account/account-detail'),
},
],
},