feat: 任务全景表格新增"最新动态"列
后端: - ProductResponse 新增 latest_record_time/content 字段 - get_all_products 批量查询活跃任务(WIP/PENDING)的最新 task_records - 使用窗口函数 ROW_NUMBER() PARTITION BY product_id 前端: - AdminTasksPage: grid-cols-12→grid-cols-[14] - 表头+数据行新增"最新动态"列 - Tooltip悬浮显示完整内容, 截断+灰字二级排版
This commit is contained in:
@ -18,6 +18,8 @@ export interface ProductResponse {
|
||||
overall_status: string | null;
|
||||
status: string;
|
||||
created_at: string;
|
||||
latest_record_time: string | null;
|
||||
latest_record_content: string | null;
|
||||
}
|
||||
|
||||
/** MOM 物料选项 */
|
||||
|
||||
Reference in New Issue
Block a user