修改流程图

pull/1/head
fangjiakai 2024-02-20 17:02:53 +08:00
parent 4315877414
commit a443986e7d
1 changed files with 4 additions and 4 deletions

View File

@ -50,12 +50,12 @@ const fnGetStatus = (step) => {
}; };
const fnGetShowStepUser = (step) => { const fnGetShowStepUser = (step) => {
if (step.FINISHED_SIGN_USER) { if (step.SIGN_USER) {
return step.ACT_USER_NAME; return step.SIGN_USER;
} else if (step.FINISHED_SIGN_USER) {
return step.FINISHED_SIGN_USER;
} else if (step.ACT_USER_NAME) { } else if (step.ACT_USER_NAME) {
return step.ACT_USER_NAME; return step.ACT_USER_NAME;
} else if (step.SIGN_USER) {
return step.SIGN_USER;
} else if (step.CAN_SKIP && !props.flowing[step.ACTOR_FIELD]) { } else if (step.CAN_SKIP && !props.flowing[step.ACTOR_FIELD]) {
return "已跳过"; return "已跳过";
} }