ywbl.js
1018 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import request from '@/utils/request'
/*
业务办理-获取收藏业务集合
*/
export function getCollectBiz () {
return request({
url: '/ywbl/BusinessApply/getCollectBiz',
method: 'post'
})
}
/*
业务办理-获取左侧菜单
*/
export function getleftMenu () {
return request({
url: '/ywbl/BusinessApply/getleftMenu',
method: 'post'
})
}
/*
业务办理-获取下个节点内容
*/
export function getNextNode (bsmSqyw) {
return request({
url: '/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw,
method: 'post',
})
}
/*
业务办理-选择单元-根据条件进行列表查询
*/
export function selectBdcdy (data) {
return request({
url: '/ywbl/ywsq/selectBdcdy',
method: 'post',
data
})
}
/*
业务办理-发起业务申请流程
*/
export function startBusinessFlow (data) {
return request({
url: '/business/workFlow/startBusinessFlow',
method: 'post',
data
})
}