| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import request from '@/utils/request.js'
- const preUrl = '/clientServices.do?iscrypt=1'
- // 获取流程 宫格 列表
- export function getFlowList(staffId, unitId) {
- return request({
- url: preUrl,
- method: 'post',
- data: {
- 'serviceId': 'bpm_20150319001GetFlowList',
- 'params': {
- "staffId": staffId,
- "unitid": unitId
- }
- }
- })
- }
- // 获取流程信息
- export function getFlowInfo(staffId, unitId) {
- return request({
- url: preUrl,
- method: 'post',
- data: {
- 'serviceId': 'bpm_20150319001GetFlowList',
- 'params': {
- "staffId": staffId,
- "unitid": unitId
- }
- }
- })
- }
- // 获取流程 表单
- export function getFlowForm(staffId, unitId) {
- return request({
- url: preUrl,
- method: 'post',
- data: {
- 'serviceId': 'bpm_20150319001GetFlowList',
- 'params': {
- "staffId": staffId,
- "unitid": unitId
- }
- }
- })
- }
|