|  |  |  | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 一级分类查询 | 
|---|
|  |  |  | export function fetchCateList (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/category/list', data, { | 
|---|
|  |  |  | trim: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 导出Excel | 
|---|
|  |  |  | export function exportExcel (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/category/exportChildExcel', data, { | 
|---|
|  |  |  | trim: true, | 
|---|
|  |  |  | download: true | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 创建 | 
|---|
|  |  |  | export function create (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/category/create', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 详情 | 
|---|
|  |  |  | export function getInfoById (id) { | 
|---|
|  |  |  | return request.get('/visitsAdmin/cloudService/business/category/' + id) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 修改 | 
|---|
|  |  |  | export function updateById (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/category/updateById', data) | 
|---|