feat(property-marketing): 新增月数据复制功能,优化组件样式布局

This commit is contained in:
林志军
2025-07-10 19:05:38 +08:00
parent 78b21b1bf7
commit a5c92999b1
3 changed files with 336 additions and 0 deletions

View File

@ -0,0 +1,39 @@
/**
* 智能体应用
*/
import type { AppRouteRecordRaw } from '../types';
import { MENU_GROUP_IDS } from '@/router/constants';
import IconRepository from '@/assets/svg/icon-repository.svg';
const COMPONENTS: AppRouteRecordRaw[] = [
{
path: '/agent',
name: 'Agent',
redirect: 'agent/listData',
meta: {
locale: '品牌资产管理',
icon: IconRepository,
requiresAuth: true,
requireLogin: true,
roles: ['*'],
id: MENU_GROUP_IDS.PROPERTY_ID,
},
children: [
{
path: 'chat',
name: 'Chat',
meta: {
locale: '品牌信息',
requiresAuth: true,
requireLogin: true,
roles: ['*'],
},
component: () => import('@/views/Agent/Chat'),
},
],
}
];
export default COMPONENTS;