perf: 渲染逻辑处理

This commit is contained in:
rd
2025-08-27 17:18:47 +08:00
parent 6e7bf7f9e4
commit 1360717647
6 changed files with 262 additions and 100 deletions

View File

@ -41,3 +41,14 @@ export enum EnumTeamRunStatus {
RunResponseContent = 'RunResponseContent', // l2执行中
RunCompleted = 'RunCompleted', // l2完成
}
export const FILE_TYPE = {
topic_only: 'topic_only', // 排期&选题
topic_with_content: 'topic_with_content', // 选题&内容稿件
content_only: 'content_only', // 内容稿件
}
export const FILE_TYPE_MAP = {
[FILE_TYPE.topic_only]: '排期&选题',
[FILE_TYPE.topic_with_content]: '选题&内容稿件',
[FILE_TYPE.content_only]: '内容稿件',
}