将数据存入业务表单json字段,并适配后端修改
This commit is contained in:
@@ -173,10 +173,25 @@ export const saveBpmForm = (params) => {
|
||||
return defHttp.post({ url: '/bg/xispeak/bgXiSpeak/saveBpmForm', params }, { isTransformResponse: false });
|
||||
};
|
||||
|
||||
/**
|
||||
* 保存部门审批信息(isEnd、部门经办人)到业务表单 approveInfo JSON
|
||||
* @param params { mainId, deptId, isEnd, implWorker }
|
||||
*/
|
||||
export const saveSubApprove = (params) => {
|
||||
return defHttp.post({ url: '/bg/xispeak/bgXiSpeak/saveSubApprove', params }, { isTransformResponse: false });
|
||||
};
|
||||
|
||||
export const setProcessVariable = (params) => {
|
||||
return defHttp.post({ url: '/act/process/setProcessVariable', params }, { isTransformResponse: false });
|
||||
};
|
||||
|
||||
/**
|
||||
* 将BPM流程变量存入向上追溯2层的父级执行实例(与 AfterImplWorkerTemStoreListener 一致)
|
||||
*/
|
||||
export const setBpmVariableLocal = (params) => {
|
||||
return defHttp.post({ url: '/act/process/setBpmVariableLocal', params }, { isTransformResponse: false });
|
||||
};
|
||||
|
||||
export const updateLaunchType = (params) => {
|
||||
return defHttp.post({ url: '/bg/xispeak/bgXiSpeak/edit', params }, { isTransformResponse: false });
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user