|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 查询列表树 | 
|---|
|  |  |  | export function fetchTree (data) { | 
|---|
|  |  |  | return request.post('/system/position/tree', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/position/tree', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 查询列表 | 
|---|
|  |  |  | export function fetchList (data) { | 
|---|
|  |  |  | return request.post('/system/position/list', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/position/list', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 新建 | 
|---|
|  |  |  | export function create (data) { | 
|---|
|  |  |  | return request.post('/system/position/create', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/position/create', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 修改 | 
|---|
|  |  |  | export function updateById (data) { | 
|---|
|  |  |  | return request.post('/system/position/updateById', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/position/updateById', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 删除 | 
|---|