|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 查询 | 
|---|
|  |  |  | export function fetchList (data) { | 
|---|
|  |  |  | return request.post('/system/dict/page', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/dict/page', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 新建 | 
|---|
|  |  |  | export function create (data) { | 
|---|
|  |  |  | return request.post('/system/dict/create', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/dict/create', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 修改 | 
|---|
|  |  |  | export function updateById (data) { | 
|---|
|  |  |  | return request.post('/system/dict/updateById', data) | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/system/dict/updateById', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 删除 | 
|---|
|  |  |  | export function deleteById (id) { | 
|---|
|  |  |  | return request.get(`/system/dict/delete/${id}`) | 
|---|
|  |  |  | return request.get(`/visitsAdmin/cloudService/system/dict/delete/${id}`) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 批量删除 | 
|---|