ywbl.js
2.16 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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 selectScBdcdy (data) {
return request({
url: '/ywbl/ywsq/selectScBdcdy',
method: 'post',
data
})
}
// 待办箱列表查询接口
export function searchTaskToDo (data) {
return request({
url: '/workBox/search/searchTaskToDo',
method: 'post',
data
})
}
// 待办箱删除接口
export function deleteFlow (data) {
return request({
url: 'business/workFlow/deleteFlow',
method: 'post',
data
})
}
/*
业务办理-发起业务申请流程
*/
export function startBusinessFlow (data) {
return request({
url: '/business/workFlow/startBusinessFlow',
method: 'post',
data
})
}
/*
已办箱列表查询接口
*/
export function searchTaskDone (data) {
return request({
url: '/workBox/search/searchTaskDone',
method: 'post',
data
})
}
/*
业务办理-选择权利信息-根据条件进行列表查询
*/
export function selectQlxx (data) {
return request({
url: '/ywbl/ywsq/selectQlxx',
method: 'post',
data
})
}
/*
业务办理-选择抵押权信息-根据条件进行列表查询
*/
export function selectDiyaq (data) {
return request({
url: '/ywbl/ywsq/selectDiyaq',
method: 'post',
data
})
}
/*
业务办理-选择查封信息-根据条件进行列表查询
*/
export function selectCfdj (data) {
return request({
url: '/ywbl/ywsq/selectCfdj',
method: 'post',
data
})
}