feat(property-marketing): 新增投放指南详情页功能

refactor(property-marketing): 优化评分图标映射逻辑
feat(property-marketing): 实现投放指南历史记录操作功能
perf(property-marketing): 优化图表数据更新逻辑
feat(property-marketing): 添加时间筛选功能 实现保存投放指南功能
- 优化页面样式和布局
This commit is contained in:
林志军
2025-07-07 20:59:54 +08:00
parent 1dae78f770
commit de9a5abcd5
17 changed files with 759 additions and 406 deletions

View File

@ -129,12 +129,23 @@ const COMPONENTS: AppRouteRecordRaw[] = [
path: 'investmentGuidelines',
name: 'PutAccountInvestmentGuidelines',
meta: {
locale: '平台投放指南',
locale: '投放指南',
requiresAuth: true,
roles: ['*'],
},
component: () => import('@/views/property-marketing/put-account/investment-guidelines'),
},
{
path: 'detail/:id',
name: 'guideDetail',
meta: {
locale: '投放指南详情',
requiresAuth: true,
hideInMenu: true,
roles: ['*'],
},
component: () => import('@/views/property-marketing/put-account/investment-guidelines/detail'),
},
],
},
{