feat: 客流热力图增加在岗人员行+规则引擎面板+菜单名称调整

- 热力图每门店增加在岗人员行(前厅/后厨/管理/其他),从考勤打卡记录解析
- 新增traffic-heatmap-staffing API,解析考勤打卡时间计算每小时在岗人数
- 人员预测tab新增可折叠规则引擎面板,展示全部规则和触发条件
- 后端API返回ruleEngine字段(动态标准+优化规则+招聘规则+决策逻辑)
- R9/R11/R12/R13增加占比超配约束,过滤不合理招聘建议
- 菜单项'菜品成本分析'→'菜品成本','门店费用分析'→'门店费用'
- 热力图横向滚动条始终可见
This commit is contained in:
freedakgmail
2026-07-30 00:04:54 +08:00
parent 75a483bfdb
commit 6bab0ad84a
5 changed files with 146 additions and 14 deletions
+18
View File
@@ -54,3 +54,21 @@ body {
color: hsl(var(--foreground));
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
.heatmap-scroll::-webkit-scrollbar {
height: 10px;
-webkit-appearance: none;
}
.heatmap-scroll::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 5px;
}
.heatmap-scroll::-webkit-scrollbar-thumb {
background-color: #999;
border-radius: 5px;
border: 2px solid #f0f0f0;
}
.heatmap-scroll {
scrollbar-width: auto;
scrollbar-color: #999 #f0f0f0;
}