refactor: 清理调试日志、注释节点并新增指标公式计算能力

1. 移除Sidebar.Item组件中的调试打印日志
2. 注释掉wms/post/flow.vue中的K节点菜单配置
3. 重构cost/comprehensive.vue的统计计算逻辑,新增自定义指标公式解析计算功能,支持变量替换和安全求值
This commit is contained in:
2026-07-04 15:35:41 +08:00
parent aab6f9e4f1
commit ce09ac9da3
3 changed files with 40 additions and 14 deletions

View File

@@ -20,9 +20,6 @@ export default {
const { icon, title, hasChildren } = context.props
// 函数式组件中 :style 绑定不会进 props需要从 context.data.style 读取
const customStyle = context.data.style || {}
if (Object.keys(customStyle).length > 0) {
console.log('[Item] ✅ 收到 style:', customStyle, '| title:', title)
}
const vnodes = []
if (icon) {