|
|
@@ -1,179 +1,187 @@
|
|
1
|
|
-import request from '@/utils/request'
|
|
2
|
|
-
|
|
3
|
|
-// 查询被申请人案件列表
|
|
4
|
|
-export function respondentList(data) {
|
|
5
|
|
- return request({
|
|
6
|
|
- 'url': '/evidence/all',
|
|
7
|
|
- method: 'get',
|
|
8
|
|
- params: data
|
|
9
|
|
- })
|
|
10
|
|
-}
|
|
11
|
|
-// 查询详情
|
|
12
|
|
-export function respondentDetail(data) {
|
|
13
|
|
- return request({
|
|
14
|
|
- 'url': `/evidence/${data}`,
|
|
15
|
|
- method: 'get',
|
|
16
|
|
- })
|
|
17
|
|
-}
|
|
18
|
|
-// 查询仲裁员列表
|
|
19
|
|
-export function arbitratorList(data) {
|
|
20
|
|
- return request({
|
|
21
|
|
- 'url': `/caseApplication/listMediator`,
|
|
22
|
|
- method: 'get',
|
|
23
|
|
- params: data
|
|
24
|
|
- })
|
|
25
|
|
-}
|
|
26
|
|
-// 确认证据
|
|
27
|
|
-export function evidenceConfirm() {
|
|
28
|
|
- return request({
|
|
29
|
|
- 'url': `/evidence/confirm`,
|
|
30
|
|
- method: 'put',
|
|
31
|
|
- })
|
|
32
|
|
-}
|
|
33
|
|
-// 案件质证
|
|
34
|
|
-export function evidenceCrossexami(data) {
|
|
35
|
|
- return request({
|
|
36
|
|
- 'url': `/evidence/crossexami`,
|
|
37
|
|
- method: 'post',
|
|
38
|
|
- data: data
|
|
39
|
|
- })
|
|
40
|
|
-}
|
|
41
|
|
-// 查询物流信息
|
|
42
|
|
-export function logistics(data) {
|
|
43
|
|
- return request({
|
|
44
|
|
- 'url': `/adjudication/logistics`,
|
|
45
|
|
- method: 'get',
|
|
46
|
|
- data: data
|
|
47
|
|
- })
|
|
48
|
|
-}
|
|
49
|
|
-// 查询案件列表
|
|
50
|
|
-export function caseApplicationList(data) {
|
|
51
|
|
- return request({
|
|
52
|
|
- 'url': `/caseApplication/list`,
|
|
53
|
|
- method: 'get',
|
|
54
|
|
- params: data
|
|
55
|
|
- })
|
|
56
|
|
-}
|
|
57
|
|
-// 调解系统查看相关案件
|
|
58
|
|
-export function caseApplicationTj(data) {
|
|
59
|
|
- return request({
|
|
60
|
|
- 'url': `/caseApplication/list`,
|
|
61
|
|
- method: 'get',
|
|
62
|
|
- params: data
|
|
63
|
|
- })
|
|
64
|
|
-}
|
|
65
|
|
-// 调解系统查看相关案件详情
|
|
66
|
|
-export function selectById(data) {
|
|
67
|
|
- return request({
|
|
68
|
|
- 'url': `/caseApplication/selectById`,
|
|
69
|
|
- method: 'get',
|
|
70
|
|
- params: data
|
|
71
|
|
- })
|
|
72
|
|
-}
|
|
73
|
|
-// 调解系统选择仲裁员时间
|
|
74
|
|
-export function updateBooking(data) {
|
|
75
|
|
- return request({
|
|
76
|
|
- 'url': `/caseApplication/updateBooking`,
|
|
77
|
|
- method: 'post',
|
|
78
|
|
- data: data
|
|
79
|
|
- })
|
|
80
|
|
-}
|
|
81
|
|
-// 查询按钮列表
|
|
82
|
|
-export function queryCaseFlowInfo(data) {
|
|
83
|
|
- return request({
|
|
84
|
|
- 'url': `/case/flow/queryCaseFlowInfo`,
|
|
85
|
|
- method: 'post',
|
|
86
|
|
- data: data
|
|
87
|
|
- })
|
|
88
|
|
-}
|
|
89
|
|
-
|
|
90
|
|
-// 根据机构id查询模板
|
|
91
|
|
-export function getTemplate(data) {
|
|
92
|
|
- return request({
|
|
93
|
|
- url: `/deptIdentify/getTemplate`,
|
|
94
|
|
- method: 'get',
|
|
95
|
|
- params: data
|
|
96
|
|
- })
|
|
97
|
|
-}
|
|
98
|
|
-
|
|
99
|
|
-// 根据身份证获取生日和性别
|
|
100
|
|
-export function getInfoByIdCard(query) {
|
|
101
|
|
- return request({
|
|
102
|
|
- url: '/caseApplication/getInfoByIdCard',
|
|
103
|
|
- method: 'get',
|
|
104
|
|
- params: query
|
|
105
|
|
- })
|
|
106
|
|
-}
|
|
107
|
|
-
|
|
108
|
|
-/** 新增案件 */
|
|
109
|
|
-export function caseApplicationInsert(data) {
|
|
110
|
|
- return request({
|
|
111
|
|
- url: '/caseApplication/insert',
|
|
112
|
|
- method: 'post',
|
|
113
|
|
- data: data
|
|
114
|
|
- })
|
|
115
|
|
-}
|
|
116
|
|
-// 修改立案申请接口
|
|
117
|
|
-export function updateComfire(data) {
|
|
118
|
|
- return request({
|
|
119
|
|
- url: "/caseApplication/update",
|
|
120
|
|
- method: "post",
|
|
121
|
|
- data: data,
|
|
122
|
|
- })
|
|
123
|
|
-}
|
|
124
|
|
-//提交案件
|
|
125
|
|
-export function caseAppSubmit(data) {
|
|
126
|
|
- return request({
|
|
127
|
|
- url: '/caseApplication/submit',
|
|
128
|
|
- method: 'post',
|
|
129
|
|
- data: data
|
|
130
|
|
- })
|
|
131
|
|
-}
|
|
132
|
|
-/** 根据id查询案件信息 */
|
|
133
|
|
-export function caseApplicationSelectById(data) {
|
|
134
|
|
- return request({
|
|
135
|
|
- url: '/caseApplication/selectById',
|
|
136
|
|
- method: 'get',
|
|
137
|
|
- params: data
|
|
138
|
|
- })
|
|
|
1
|
+import request from '@/utils/request'
|
|
|
2
|
+
|
|
|
3
|
+// 查询被申请人案件列表
|
|
|
4
|
+export function respondentList(data) {
|
|
|
5
|
+ return request({
|
|
|
6
|
+ 'url': '/evidence/all',
|
|
|
7
|
+ method: 'get',
|
|
|
8
|
+ params: data
|
|
|
9
|
+ })
|
|
|
10
|
+}
|
|
|
11
|
+// 查询详情
|
|
|
12
|
+export function respondentDetail(data) {
|
|
|
13
|
+ return request({
|
|
|
14
|
+ 'url': `/evidence/${data}`,
|
|
|
15
|
+ method: 'get',
|
|
|
16
|
+ })
|
|
|
17
|
+}
|
|
|
18
|
+// 查询仲裁员列表
|
|
|
19
|
+export function arbitratorList(data) {
|
|
|
20
|
+ return request({
|
|
|
21
|
+ 'url': `/caseApplication/listMediator`,
|
|
|
22
|
+ method: 'get',
|
|
|
23
|
+ params: data
|
|
|
24
|
+ })
|
|
|
25
|
+}
|
|
|
26
|
+// 确认证据
|
|
|
27
|
+export function evidenceConfirm() {
|
|
|
28
|
+ return request({
|
|
|
29
|
+ 'url': `/evidence/confirm`,
|
|
|
30
|
+ method: 'put',
|
|
|
31
|
+ })
|
|
|
32
|
+}
|
|
|
33
|
+// 案件质证
|
|
|
34
|
+export function evidenceCrossexami(data) {
|
|
|
35
|
+ return request({
|
|
|
36
|
+ 'url': `/evidence/crossexami`,
|
|
|
37
|
+ method: 'post',
|
|
|
38
|
+ data: data
|
|
|
39
|
+ })
|
|
|
40
|
+}
|
|
|
41
|
+// 查询物流信息
|
|
|
42
|
+export function logistics(data) {
|
|
|
43
|
+ return request({
|
|
|
44
|
+ 'url': `/adjudication/logistics`,
|
|
|
45
|
+ method: 'get',
|
|
|
46
|
+ data: data
|
|
|
47
|
+ })
|
|
|
48
|
+}
|
|
|
49
|
+// 查询案件列表
|
|
|
50
|
+export function caseApplicationList(data) {
|
|
|
51
|
+ return request({
|
|
|
52
|
+ 'url': `/caseApplication/list`,
|
|
|
53
|
+ method: 'get',
|
|
|
54
|
+ params: data
|
|
|
55
|
+ })
|
|
|
56
|
+}
|
|
|
57
|
+// 调解系统查看相关案件
|
|
|
58
|
+export function caseApplicationTj(data) {
|
|
|
59
|
+ return request({
|
|
|
60
|
+ 'url': `/caseApplication/list`,
|
|
|
61
|
+ method: 'get',
|
|
|
62
|
+ params: data
|
|
|
63
|
+ })
|
|
|
64
|
+}
|
|
|
65
|
+// 调解系统查看相关案件详情
|
|
|
66
|
+export function selectById(data) {
|
|
|
67
|
+ return request({
|
|
|
68
|
+ 'url': `/caseApplication/selectById`,
|
|
|
69
|
+ method: 'get',
|
|
|
70
|
+ params: data
|
|
|
71
|
+ })
|
|
|
72
|
+}
|
|
|
73
|
+// 调解系统选择仲裁员时间
|
|
|
74
|
+export function updateBooking(data) {
|
|
|
75
|
+ return request({
|
|
|
76
|
+ 'url': `/caseApplication/updateBooking`,
|
|
|
77
|
+ method: 'post',
|
|
|
78
|
+ data: data
|
|
|
79
|
+ })
|
|
|
80
|
+}
|
|
|
81
|
+// 查询按钮列表
|
|
|
82
|
+export function queryCaseFlowInfo(data) {
|
|
|
83
|
+ return request({
|
|
|
84
|
+ 'url': `/case/flow/queryCaseFlowInfo`,
|
|
|
85
|
+ method: 'post',
|
|
|
86
|
+ data: data
|
|
|
87
|
+ })
|
|
|
88
|
+}
|
|
|
89
|
+
|
|
|
90
|
+// 根据机构id查询模板
|
|
|
91
|
+export function getTemplate(data) {
|
|
|
92
|
+ return request({
|
|
|
93
|
+ url: `/deptIdentify/getTemplate`,
|
|
|
94
|
+ method: 'get',
|
|
|
95
|
+ params: data
|
|
|
96
|
+ })
|
|
|
97
|
+}
|
|
|
98
|
+
|
|
|
99
|
+// 根据身份证获取生日和性别
|
|
|
100
|
+export function getInfoByIdCard(query) {
|
|
|
101
|
+ return request({
|
|
|
102
|
+ url: '/caseApplication/getInfoByIdCard',
|
|
|
103
|
+ method: 'get',
|
|
|
104
|
+ params: query
|
|
|
105
|
+ })
|
|
|
106
|
+}
|
|
|
107
|
+
|
|
|
108
|
+/** 新增案件 */
|
|
|
109
|
+export function caseApplicationInsert(data) {
|
|
|
110
|
+ return request({
|
|
|
111
|
+ url: '/caseApplication/insert',
|
|
|
112
|
+ method: 'post',
|
|
|
113
|
+ data: data
|
|
|
114
|
+ })
|
|
|
115
|
+}
|
|
|
116
|
+// 修改立案申请接口
|
|
|
117
|
+export function updateComfire(data) {
|
|
|
118
|
+ return request({
|
|
|
119
|
+ url: "/caseApplication/update",
|
|
|
120
|
+ method: "post",
|
|
|
121
|
+ data: data,
|
|
|
122
|
+ })
|
|
|
123
|
+}
|
|
|
124
|
+//提交案件
|
|
|
125
|
+export function caseAppSubmit(data) {
|
|
|
126
|
+ return request({
|
|
|
127
|
+ url: '/caseApplication/submit',
|
|
|
128
|
+ method: 'post',
|
|
|
129
|
+ data: data
|
|
|
130
|
+ })
|
|
|
131
|
+}
|
|
|
132
|
+/** 根据id查询案件信息 */
|
|
|
133
|
+export function caseApplicationSelectById(data) {
|
|
|
134
|
+ return request({
|
|
|
135
|
+ url: '/caseApplication/selectById',
|
|
|
136
|
+ method: 'get',
|
|
|
137
|
+ params: data
|
|
|
138
|
+ })
|
|
139
|
139
|
}
|
|
140
|
140
|
// 删除案件
|
|
141
|
|
-export function caseDelete(data) {
|
|
142
|
|
- return request({
|
|
143
|
|
- url: '/caseApplication/delete',
|
|
144
|
|
- method: 'post',
|
|
145
|
|
- data: data
|
|
146
|
|
- })
|
|
|
141
|
+export function caseDelete(data) {
|
|
|
142
|
+ return request({
|
|
|
143
|
+ url: '/caseApplication/delete',
|
|
|
144
|
+ method: 'post',
|
|
|
145
|
+ data: data
|
|
|
146
|
+ })
|
|
147
|
147
|
}
|
|
148
|
148
|
// 案件id查询缴费清单
|
|
149
|
|
-export function selectPaymentDetail(data) {
|
|
150
|
|
- return request({
|
|
151
|
|
- url: '/pay/selectPaymentDetail',
|
|
152
|
|
- method: 'get',
|
|
153
|
|
- params: data
|
|
154
|
|
- })
|
|
|
149
|
+export function selectPaymentDetail(data) {
|
|
|
150
|
+ return request({
|
|
|
151
|
+ url: '/pay/selectPaymentDetail',
|
|
|
152
|
+ method: 'get',
|
|
|
153
|
+ params: data
|
|
|
154
|
+ })
|
|
155
|
155
|
}
|
|
156
|
156
|
// 申请人缴费确认
|
|
157
|
|
-export function confirmPaid(data) {
|
|
158
|
|
- return request({
|
|
159
|
|
- url: '/pay/confirmPaid',
|
|
160
|
|
- method: 'post',
|
|
161
|
|
- data: data
|
|
162
|
|
- })
|
|
|
157
|
+export function confirmPaid(data) {
|
|
|
158
|
+ return request({
|
|
|
159
|
+ url: '/pay/confirmPaid',
|
|
|
160
|
+ method: 'post',
|
|
|
161
|
+ data: data
|
|
|
162
|
+ })
|
|
163
|
163
|
}
|
|
164
|
164
|
//默认新增显示
|
|
165
|
|
-export function getUserInfo(data) {
|
|
166
|
|
- return request({
|
|
167
|
|
- url: '/caseApplication/getUserInfo',
|
|
168
|
|
- method: 'get',
|
|
169
|
|
- params: data
|
|
170
|
|
- })
|
|
|
165
|
+export function getUserInfo(data) {
|
|
|
166
|
+ return request({
|
|
|
167
|
+ url: '/caseApplication/getUserInfo',
|
|
|
168
|
+ method: 'get',
|
|
|
169
|
+ params: data
|
|
|
170
|
+ })
|
|
171
|
171
|
}
|
|
172
|
172
|
// 被申请人缴费确认
|
|
173
|
|
-export function resConfirmPaid(data) {
|
|
174
|
|
- return request({
|
|
175
|
|
- url: '/pay/resConfirmPaid',
|
|
176
|
|
- method: 'post',
|
|
177
|
|
- data: data
|
|
178
|
|
- })
|
|
|
173
|
+export function resConfirmPaid(data) {
|
|
|
174
|
+ return request({
|
|
|
175
|
+ url: '/pay/resConfirmPaid',
|
|
|
176
|
+ method: 'post',
|
|
|
177
|
+ data: data
|
|
|
178
|
+ })
|
|
|
179
|
+}
|
|
|
180
|
+//申请人和被申请人签收调解书
|
|
|
181
|
+export function msCaseSign(data) {
|
|
|
182
|
+ return request({
|
|
|
183
|
+ url: "/mssignSeal/msCaseSign",
|
|
|
184
|
+ method: "post",
|
|
|
185
|
+ data: data,
|
|
|
186
|
+ })
|
|
179
|
187
|
}
|