|  |  |  | 
|---|
|  |  |  | export function create (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/jkCustomer/create', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | export function importExcel (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/jkCustomer/importExcel', data) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 修改 | 
|---|
|  |  |  | export function updateById (data) { | 
|---|
|  |  |  | return request.post('/visitsAdmin/cloudService/business/jkCustomer/updateById', data) | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 删除 | 
|---|
|  |  |  | export function deleteById (id) { | 
|---|
|  |  |  | return request.get(`/business/jkCustomer/delete/${id}`) | 
|---|
|  |  |  | return request.get(`/visitsAdmin/cloudService/business/jkCustomer/delete/${id}`) | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 批量删除 | 
|---|