Skip to content

Instantly share code, notes, and snippets.

@hidoos
Created December 8, 2023 02:05
Show Gist options
  • Save hidoos/9b0be2774a6323550915c5db612db056 to your computer and use it in GitHub Desktop.
Save hidoos/9b0be2774a6323550915c5db612db056 to your computer and use it in GitHub Desktop.
信息管理流程
信息管理流程
待提交*
提交 -> 审核中
审核中
审批人拒绝 -> 驳回
审批人通过 -> 待发布
驳回
自动 -> 待提交
待发布
已发布
function render(model){
let current_state_name = model.active_states[0].name;
return $("h1",
{style: {color: "darkBlue"}},
`The current state is: ${current_state_name}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment