| 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) | 
| } |