MrShi
2024-01-31 a68bf12a2975405f57f9a9d51b91c13a93c026f0
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
import request from '../../utils/request'
 
// 查询
export function fetchList (data) {
    return request.post('/business/insuranceApply/page', data, {
        trim: true
    })
}
 
// 修改
export function updateById (data) {
    return request.post('/business/insuranceApply/updateById', data)
}
 
// 新建
export function create (data) {
    return request.post('/business/insuranceApply/create', data)
}
 
export function check (data) {
    return request.post('/business/insuranceApply/check', data)
}
export function back (data) {
    return request.post('/business/insuranceApply/back', data)
}
 
export function uploadToubaodan (data) {
    return request.post('/business/insuranceApply/uploadToubaodan', data)
}
export function uploadBaoxiandan(data) {
    return request.post('/business/insuranceApply/uploadBaoxiandan', data)
}
export function editBaoxiandan(data) {
    return request.post('/business/insuranceApply/editBaoxiandan', data)
}
export function dealBackApply(data) {
    return request.post('/business/insuranceApply/dealBackApply', data)
}
 
// 获取保单止期与初始金额
export function getCountCyclePriceVO (data) {
    return request.post('/business/insuranceApply/getCountCyclePriceVO', data)
}
 
// 申请记录状态处理
export function applyOpt (data) {
    return request.post('/business/insuranceApply/applyOpt', data)
}
 
export function exportDetailExcel (data) {
    return request.post('/business/insuranceApply/exportDetailExcel', data, {
        trim: true,
        download: true
    })
}
export function getDetail (id) {
    return request.get(`business/insuranceApply/${id}`)
}
export function getChangeDetail (id) {
    return request.get(`business/applyChange/${id}`)
}
export function getSignLink (id) {
    return request.get(`business/insuranceApply/getSignLink/${id}`)
}
export function getJiajianBaoSignLink (data) {
    return request.post('/business/applyChange/getJiajianBaoSignLink', data, {
        trim: true
    })
}
export function getChangeUnitSignLink (data) {
    return request.post('/business/applyChange/getChangeUnitSignLink', data, {
        trim: true
    })
}
export function getDetailList (data) {
    return request.post('/business/applyDetail/list', data, {
        trim: true
    })
}
export function getChangeDetailList (data) {
    return request.post('/business/applyChagneDetail/list', data, {
        trim: true
    })
}
 
// 列表查询
export function findList (data) {
    return request.post('/business/applyDetail/findList', data)
}
 
// 修改
export function updateData (data) {
    return request.post('/business/insuranceApply/updateData', data)
}
 
// 在保分页查询
export function applyDetailPage (data) {
    return request.post('/business/applyDetail/page', data)
}
 
// 加减、换场分页查询
export function applyChagneDetailPage (data) {
    return request.post('/business/applyChagneDetail/page', data)
}
// 导出在保人员详单Excel
export function exportExcel (data) {
    return request.post('/business/applyDetail/exportExcel', data, {
        trim: true,
        download: true
    })
}
export function exportJiajianBaoExcel (data) {
    return request.post('/business/applyChange/exportJiajianBaoExcel', data, {
        trim: true,
        download: true
    })
}
export function backChagne (data) {
    return request.post('/business/applyChange/back', data, {
        trim: true
    })
}
export function editChangePidan (data) {
    return request.post('/business/applyChange/editPidan', data, {
        trim: true
    })
}
export function uploadChangePidan (data) {
    return request.post('/business/applyChange/uploadPidan', data, {
        trim: true
    })
}
export function dealBackChangeApply (data) {
    return request.post('/business/applyChange/dealBackApply', data, {
        trim: true
    })
}
export function exportChangeUnitExcel (data) {
    return request.post('/business/applyChange/exportChangeUnitExcel', data, {
        trim: true,
        download: true
    })
}
 
// 导出Excel
export function applyChagneDetailExcel (data) {
    return request.post('/business/applyChagneDetail/exportExcel', data, {
        trim: true,
        download: true
    })
}