violationCaseFile.js
1.76 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
import request from '@/utils/request'
// 查询平台违规案卷列表
export function listViolationCaseFile(query) {
return request({
url: '/casefile/violationCaseFile/list',
method: 'get',
params: query
})
}
// 查询回复审批流程列表
export function caseTable(query) {
return request({
url: '/casefile/violationCaseFile/caseTable',
method: 'get',
params: query
})
}
// 查询平台违规案卷详细
export function getViolationCaseFile(id) {
return request({
url: '/casefile/violationCaseFile/' + id,
method: 'get'
})
}
// 新增平台违规案卷
export function addViolationCaseFile(data) {
return request({
url: '/casefile/violationCaseFile',
method: 'post',
data: data
})
}
export function deleteUpCase(data) {
return request({
url: '/casefile/violationCaseFile/deleteUpCase',
method: 'post',
data: data
})
}
export function delayUpCase(data) {
return request({
url: '/casefile/violationCaseFile/delayUpCase',
method: 'post',
data: data
})
}
// 修改平台违规案卷
export function updateViolationCaseFile(data) {
return request({
url: '/casefile/violationCaseFile',
method: 'put',
data: data
})
}
// 修改平台违规案卷
export function updateViolationCaseFileReader(data) {
return request({
url: '/casefile/violationCaseFile/updateViolationCaseFileReader',
method: 'put',
data: data
})
}
// 删除平台违规案卷
export function delViolationCaseFile(id) {
return request({
url: '/casefile/violationCaseFile/' + id,
method: 'delete'
})
}
// 导出平台违规案卷
export function exportViolationCaseFile(query) {
return request({
url: '/casefile/violationCaseFile/export',
method: 'get',
params: query
})
}