| import request from '../../utils/request' | 
|   | 
| // 查询 | 
| export function fetchList (data) { | 
|     return request.post('/business/unionChange/page', data, { | 
|         trim: true | 
|     }) | 
| } | 
| // 查询 | 
| export function getSignLink (data) { | 
|     return request.post('/business/unionChange/getSignLink', data, { | 
|         trim: true | 
|     }) | 
| } | 
|   | 
| // 创建 | 
| export function create (data) { | 
|     return request.post('/business/unionChange/create', data) | 
| } | 
|   | 
| export function merge (data) { | 
|     return request.post('/business/unionChange/merge', data) | 
| } | 
|   | 
| // 修改 | 
| export function updateById (data) { | 
|     return request.post('/business/unionChange/updateById', data) | 
| } | 
| export function uploadBXD (data) { | 
|     return request.post('/business/unionChange/uploadBXD', data) | 
| } | 
| export function close (data) { | 
|     return request.post('/business/unionChange/close', data) | 
| } | 
|   | 
| export function exportDetailExcel (data) { | 
|     return request.post('/business/unionChange/exportDetailExcel', data, { | 
|         trim: true, | 
|         download: true | 
|     }) | 
| } | 
| // 根据ID查询 | 
| export function getById (id) { | 
|     return request.get(`/business/unionChange/${id}`) | 
| } |