'use strict'; import { ApiTable, basicAction } from '$utils' export function getEnabledWorkflowProcess () { return dispatch => basicAction({ type: 'get', dispatch: dispatch, actionType: 'GET_ENABLED_WORKFLOW_PROCESS', url: `${ApiTable.getEnabledWorkflowProcess}`, msg: { error: '获取可用表单失败' }, reducer: { name: 'workflowProcess' } }); }