MrShi
2024-11-15 30cfb2b836a8a3d609518cc295753b58b17a9bc7
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
import request from '../../utils/request'
 
// 查询
export function fetchList (data) {
    return request.post('/business/unionApply/page', data, {
        trim: true
    })
}
 
export function exportDetailExcel (data) {
    return request.post('/business/unionApply/exportDetailExcel', data, {
        trim: true,
        download: true
    })
}
 
// 创建
export function create (data) {
    return request.post('/business/unionApply/create', data)
}
export function merge (data) {
    return request.post('/business/unionApply/merge', data)
}
export function cancel (data) {
    return request.post('/business/unionApply/cancel', data)
}
export function uploadToubaodan (data) {
    return request.post('/business/unionApply/uploadToubaodan', data)
}
export function getSignLink (data) {
    return request.post('/business/unionApply/getSignLink', data)
}
export function uploadBXD (data) {
    return request.post('/business/unionApply/uploadBXD', data)
}
 
// 修改
export function updateById (data) {
    return request.post('/business/unionApply/updateById', data)
}
 
// 根据ID查询
export function getById (id) {
    return request.get(`/business/unionApply/${id}`)
}
 
// 投保复审
export function reexamineCheck (data) {
    return request.post('/business/unionApply/reexamineCheck', data)
}