fqsq.js
1.89 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
import request from '@/utils/request'
// 转出
export function completeTask (data) {
return request({
url: '/business/workFlow/completeTask',
method: 'post',
data
})
}
// 回退表格数据
export function getTaskBackNode (params) {
return request({
url: '/business/workFlow/getTaskBackNode',
method: 'get',
params: params
})
}
// 退回确认接口
export function sendBackTask (data) {
return request({
url: '/business/workFlow/sendBackTask',
method: 'post',
data
})
}
// 获取左侧列表
export function leftMenu (data) {
return request({
url: '/ywbl/tdsyqlr/leftMenu',
method: 'post',
data
})
}
// 受理信息返显接口
export function Init (data) {
return request({
url: '/ywbl/tdsyqlr/Init',
method: 'post',
data
})
}
// 材料目录明细初始化
export function clmlInit (data) {
return request({
url: '/zhcx/clml/Init',
method: 'post',
data
})
}
// 材料目录明细移动
export function move (data) {
return request({
url: '/zhcx/clml/move',
method: 'post',
data
})
}
// 材料目录明细保存
export function save (data) {
return request({
url: '/zhcx/clml/save',
method: 'post',
data
})
}
// 材料目录批量删除
export function clmlDelete (params) {
return request({
url: '/zhcx/clml/delete',
method: 'delete',
params: params
})
}
// 获取下一环节信息
export function getNextLinkInfo (params) {
return request({
url: '/business/workFlow/getNextLinkInfo',
method: 'get',
params: params
})
}
// 环节扩展信息
export function stepExpandInfo (data) {
return request({
url: '/business/workFlow/stepExpandInfo',
method: 'post',
data
})
}