feat(property-marketing): 重构AI分析结果处理逻辑并优化页面交互

refactor(property-marketing): 拆分投放指南和历史指南组件逻辑

feat(property-marketing): 添加AI检测结果状态枚举

perf(property-marketing): 优化定时任务处理逻辑和错误处理

style(property-marketing): 调整页面样式和布局结构
This commit is contained in:
林志军
2025-07-08 16:55:03 +08:00
parent 1b72fcae2f
commit 67e1051138
9 changed files with 157 additions and 114 deletions

View File

@ -19,3 +19,11 @@ export function getStarIcon(score: number): string {
return top1; // 默认返回最高分图标
}
}
// ai检测结果状态
export enum AiResultStatus {
WAIT = 0, // 待执行
PENDING = 1, // 处理中
FAILED = 2, // 失败
SUCCESS = 3, // 成功
}