# FlowchartUtils
该工具的主要作用是根据流程节点获取该节点出口路径信息,方便呈现审批结果选择。
需要说明的是,flowchartUtils内部使用了context.$storage.getStorage('processBodyId')
来获取processBodyId
,因此需要提前利用context.$storage.getStorage('processBodyId',value)
来进行设置processBodyId
。
使用示例如下:
import flowchartUtils from '@/utils/flowchartUtils.js'
export default {
data(){
return {
approvalOptions:[]
}
},
created(){
flowchartUtils.getProcessExit(this, 'approvalOptions')
}
}