dev_1.2
tangjie 2026-07-24 18:26:42 +08:00
parent 0dbc0a18d9
commit 45d7838757
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ const buildProcessTabs = (projectNode) => {
const unlocked = allPrevDone(7); const unlocked = allPrevDone(7);
return { return {
...item, ...item,
state: unlocked ? "待办理" : "前置未完成", state: unlocked ? node.state === 1 ? "已完成" : "待办理" : "前置未完成",
stateType: unlocked ? "default" : "warning", stateType: unlocked ? node.state === 1 ? "success" : "default" : "warning",
locked: !unlocked, locked: !unlocked,
}; };
} }