Blame view

api/workFlow/flowEngine_1.js 676 Bytes
290144e9   易尊强   第一次
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  import request from '@/utils/request'
  
  // 获取流程引擎列表
  export function FlowEngineList(data) {
  	return request({
  		url: `/api/workflow/Engine/FlowEngine`,
  		method: 'get',
  		data
  	})
  }
  // 获取流程引擎信息
  export function FlowEngineInfo(id) {
  	return request({
  		url: `/api/workflow/Engine/FlowEngine/${id}`,
  		method: 'get'
  	})
  }
  // 列表ListAll
  export function FlowEngineListAll() {
  	return request({
  		url: `/api/workflow/Engine/FlowEngine/ListAll`,
  		method: 'get'
  	})
  }
  // 流程引擎下拉框
  export function FlowEngineSelector(type) {
  	return request({
  		url: `/api/workflow/Engine/FlowEngine/Selector`,
  		method: 'get',
  		data: {
  			type
  		}
  	})
  }