|  |  | 
 |  |  |  | 
 |  |  | // 查询 | 
 |  |  | export function fetchList (data) { | 
 |  |  |     return request.post('/business/dispatchUnit/page', data, { | 
 |  |  |         trim: true | 
 |  |  |     }) | 
 |  |  |   return request.post('/business/dispatchUnit/page', data, { | 
 |  |  |     trim: true | 
 |  |  |   }) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | // 创建 | 
 |  |  | export function create (data) { | 
 |  |  |     return request.post('/business/dispatchUnit/create', data) | 
 |  |  |   return request.post('/business/dispatchUnit/create', data) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | // 修改 | 
 |  |  | export function updateById (data) { | 
 |  |  |   return request.post('/business/dispatchUnit/updateById', data) | 
 |  |  | } | 
 |  |  |  | 
 |  |  | // 根据ID查询 | 
 |  |  | export function getById (id) { | 
 |  |  |   return request.get(`/business/dispatchUnit/${id}`) | 
 |  |  | } |