|  |  |  | 
|---|
|  |  |  | return request.post('/business/company/updateById', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 查询全部数据(账号分配企业使用) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | export function pageAll (data) { | 
|---|
|  |  |  | return request.post('/business/company/list', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 查询全部数据(账号分配企业使用) | 
|---|
|  |  |  | export function allForFp (data) { | 
|---|
|  |  |  | return request.post('/business/company/pageAll', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | return request.post('/business/company/updateStatus', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | export function exportComFiles (data) { | 
|---|
|  |  |  | return request.post('/business/company/exportFiles', data, { | 
|---|
|  |  |  | trim: true, | 
|---|
|  |  |  | download: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 根据ID查询 | 
|---|
|  |  |  | export function getById (id) { | 
|---|
|  |  |  | return request.get(`/business/company/${id}`) | 
|---|