Commit 86b5e66d by lichengming

修改了委托评审提交审批接口

parent be728524
......@@ -2,7 +2,7 @@
* 发起流程 -- 新的流程部署
*/
import http from '../http'
import httpJson from '../httpJson'
import { https } from '../https'
export default {
// 获取流程的启动表单
......@@ -14,7 +14,9 @@ export default {
.then(res => res),
// 启动流程实例
start: data =>
httpJson.post('/flow/v1/processInstance/start', data).then(res => res),
https
.post('/flow/v1/processInstance/start', JSON.stringify(data))
.then(res => res),
// 查看-流程表单
formData: id =>
http
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment