|
|
@@ -2,99 +2,99 @@ import request from '@/utils/request'
|
|
2
|
2
|
|
|
3
|
3
|
// 查询案件列表
|
|
4
|
4
|
export function caseApplicationList(data) {
|
|
5
|
|
- return request({
|
|
6
|
|
- url: 'caseApplication/list',
|
|
7
|
|
- method: 'get',
|
|
8
|
|
- params: data
|
|
9
|
|
- })
|
|
|
5
|
+ return request({
|
|
|
6
|
+ url: 'caseApplication/list',
|
|
|
7
|
+ method: 'get',
|
|
|
8
|
+ params: data
|
|
|
9
|
+ })
|
|
10
|
10
|
}
|
|
11
|
11
|
/** 新增案件 */
|
|
12
|
12
|
export function caseApplicationInsert(data) {
|
|
13
|
|
- return request({
|
|
14
|
|
- url: 'caseApplication/insert',
|
|
15
|
|
- method: 'post',
|
|
16
|
|
- data: data
|
|
17
|
|
- })
|
|
|
13
|
+ return request({
|
|
|
14
|
+ url: 'caseApplication/insert',
|
|
|
15
|
+ method: 'post',
|
|
|
16
|
+ data: data
|
|
|
17
|
+ })
|
|
18
|
18
|
}
|
|
19
|
19
|
/** 根据id查询案件信息 */
|
|
20
|
20
|
export function caseApplicationSelectById(data) {
|
|
21
|
|
- return request({
|
|
22
|
|
- url: '/caseApplication/selectById',
|
|
23
|
|
- method: 'get',
|
|
24
|
|
- params: data
|
|
25
|
|
- })
|
|
|
21
|
+ return request({
|
|
|
22
|
+ url: '/caseApplication/selectById',
|
|
|
23
|
+ method: 'get',
|
|
|
24
|
+ params: data
|
|
|
25
|
+ })
|
|
26
|
26
|
}
|
|
27
|
27
|
/** 案件证据查询 */
|
|
28
|
28
|
export function getFileList(data) {
|
|
29
|
|
- return request({
|
|
30
|
|
- url: "/common/fileList",
|
|
31
|
|
- method: "get",
|
|
32
|
|
- params: data,
|
|
33
|
|
- });
|
|
|
29
|
+ return request({
|
|
|
30
|
+ url: "/common/fileList",
|
|
|
31
|
+ method: "get",
|
|
|
32
|
+ params: data,
|
|
|
33
|
+ });
|
|
34
|
34
|
}
|
|
35
|
35
|
/** 批量上传证据 */
|
|
36
|
36
|
export function batchUpload(data) {
|
|
37
|
|
- return request({
|
|
38
|
|
- url: "/caseApplication/batchUpload",
|
|
39
|
|
- method: "post",
|
|
40
|
|
- data: data,
|
|
41
|
|
- });
|
|
|
37
|
+ return request({
|
|
|
38
|
+ url: "/caseApplication/batchUpload",
|
|
|
39
|
+ method: "post",
|
|
|
40
|
+ data: data,
|
|
|
41
|
+ });
|
|
42
|
42
|
}
|
|
43
|
43
|
// 提交
|
|
44
|
44
|
export function submitCaseApply(data) {
|
|
45
|
|
- return request({
|
|
46
|
|
- url: '/caseApplication/submit',
|
|
47
|
|
- method: 'post',
|
|
48
|
|
- data: data
|
|
49
|
|
- })
|
|
50
|
|
- }
|
|
|
45
|
+ return request({
|
|
|
46
|
+ url: '/caseApplication/submit',
|
|
|
47
|
+ method: 'post',
|
|
|
48
|
+ data: data
|
|
|
49
|
+ })
|
|
|
50
|
+}
|
|
51
|
51
|
// 缴费确认
|
|
52
|
52
|
export function confirmPaid(data) {
|
|
53
|
|
- return request({
|
|
54
|
|
- url: "/pay/confirmPaid",
|
|
55
|
|
- method: "post",
|
|
56
|
|
- data: data,
|
|
57
|
|
- });
|
|
58
|
|
- }
|
|
|
53
|
+ return request({
|
|
|
54
|
+ url: "/pay/confirmPaid",
|
|
|
55
|
+ method: "post",
|
|
|
56
|
+ data: data,
|
|
|
57
|
+ });
|
|
|
58
|
+}
|
|
59
|
59
|
// 案件id查询缴费清单
|
|
60
|
60
|
export function selectPaymentDetail(data) {
|
|
61
|
|
- return request({
|
|
62
|
|
- url: "/pay/selectPaymentDetail",
|
|
63
|
|
- method: "get",
|
|
64
|
|
- params: data,
|
|
65
|
|
- });
|
|
66
|
|
- }
|
|
67
|
|
- //案件受理
|
|
68
|
|
- export function accept(data) {
|
|
69
|
|
- return request({
|
|
70
|
|
- url: "/caseApplication/accept",
|
|
71
|
|
- method: "post",
|
|
72
|
|
- data: data,
|
|
73
|
|
- });
|
|
74
|
|
- }
|
|
75
|
|
- export function listMediator(data) {
|
|
76
|
|
- return request({
|
|
77
|
|
- url: "caseApplication/listMediator",
|
|
78
|
|
- method: "get",
|
|
79
|
|
- params: data,
|
|
80
|
|
- });
|
|
81
|
|
- }
|
|
|
61
|
+ return request({
|
|
|
62
|
+ url: "/pay/selectPaymentDetail",
|
|
|
63
|
+ method: "get",
|
|
|
64
|
+ params: data,
|
|
|
65
|
+ });
|
|
|
66
|
+}
|
|
|
67
|
+//案件受理
|
|
|
68
|
+export function accept(data) {
|
|
|
69
|
+ return request({
|
|
|
70
|
+ url: "/caseApplication/accept",
|
|
|
71
|
+ method: "post",
|
|
|
72
|
+ data: data,
|
|
|
73
|
+ });
|
|
|
74
|
+}
|
|
|
75
|
+export function listMediator(data) {
|
|
|
76
|
+ return request({
|
|
|
77
|
+ url: "caseApplication/listMediator",
|
|
|
78
|
+ method: "get",
|
|
|
79
|
+ params: data,
|
|
|
80
|
+ });
|
|
|
81
|
+}
|
|
82
|
82
|
// 确认仲裁员以及时间
|
|
83
|
83
|
export function updateBooking(data) {
|
|
84
|
|
- return request({
|
|
85
|
|
- url: "/caseApplication/updateBooking",
|
|
86
|
|
- method: "post",
|
|
87
|
|
- data: data,
|
|
88
|
|
- });
|
|
89
|
|
- }
|
|
90
|
|
- //用印申请
|
|
91
|
|
- export function sealApply(data) {
|
|
92
|
|
- return request({
|
|
93
|
|
- url: "/mssignSeal/sealApply",
|
|
94
|
|
- method: "post",
|
|
95
|
|
- data: data,
|
|
96
|
|
- });
|
|
97
|
|
- }
|
|
|
84
|
+ return request({
|
|
|
85
|
+ url: "/caseApplication/updateBooking",
|
|
|
86
|
+ method: "post",
|
|
|
87
|
+ data: data,
|
|
|
88
|
+ });
|
|
|
89
|
+}
|
|
|
90
|
+//用印申请
|
|
|
91
|
+export function sealApply(data) {
|
|
|
92
|
+ return request({
|
|
|
93
|
+ url: "/mssignSeal/sealApply",
|
|
|
94
|
+ method: "post",
|
|
|
95
|
+ data: data,
|
|
|
96
|
+ });
|
|
|
97
|
+}
|
|
98
|
98
|
// 用印确认
|
|
99
|
99
|
export function selectSealUrl(data) {
|
|
100
|
100
|
return request({
|
|
|
@@ -105,13 +105,13 @@ export function selectSealUrl(data) {
|
|
105
|
105
|
}
|
|
106
|
106
|
//查询预约信息
|
|
107
|
107
|
export function selectReservation(data) {
|
|
108
|
|
- return request({
|
|
109
|
|
- url: "/caseApplication/selectReservation",
|
|
110
|
|
- method: "get",
|
|
111
|
|
- params: data,
|
|
112
|
|
- });
|
|
113
|
|
- }
|
|
114
|
|
- //核实调解员
|
|
|
108
|
+ return request({
|
|
|
109
|
+ url: "/caseApplication/selectReservation",
|
|
|
110
|
+ method: "get",
|
|
|
111
|
+ params: data,
|
|
|
112
|
+ });
|
|
|
113
|
+}
|
|
|
114
|
+//核实调解员
|
|
115
|
115
|
export function verifyMediator(data) {
|
|
116
|
116
|
return request({
|
|
117
|
117
|
url: "/caseApplication/verifyMediator",
|
|
|
@@ -123,7 +123,13 @@ export function verifyMediator(data) {
|
|
123
|
123
|
export function confirmDate(data) {
|
|
124
|
124
|
return request({
|
|
125
|
125
|
url: "/caseApplication/confirmDate",
|
|
|
126
|
+ })
|
|
|
127
|
+}
|
|
|
128
|
+// 查看案件流程
|
|
|
129
|
+export function selectCaseProgress(data) {
|
|
|
130
|
+ return request({
|
|
|
131
|
+ url: "/mssignSeal/selectCaseProgress",
|
|
126
|
132
|
method: "post",
|
|
127
|
133
|
data: data,
|
|
128
|
|
- });
|
|
|
134
|
+ })
|
|
129
|
135
|
}
|