MrShi
2025-04-11 3a45da15c947c2d478a44a51bd0f926647b1b841
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
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}`)
}