parent
7fa6ea4d28
commit
04053cb61e
1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||||
|
// 大批量配置
|
||||||
|
import request from '@/axios'; |
||||||
|
|
||||||
|
// 列表
|
||||||
|
export const getList = params => |
||||||
|
request({ |
||||||
|
url: '/api/blade-desk/BA/BatConfig/page', |
||||||
|
method: 'get', |
||||||
|
params |
||||||
|
}) |
||||||
|
|
||||||
|
// 批量新增
|
||||||
|
export const addBat = data => |
||||||
|
request({ |
||||||
|
url: '/api/blade-desk/BA/BatConfig/saveBat', |
||||||
|
method: 'post', |
||||||
|
data |
||||||
|
}) |
||||||
|
|
||||||
|
// 修改
|
||||||
|
export const updateBat = data => |
||||||
|
request({ |
||||||
|
url: '/api/blade-desk/BA/BatConfig/update', |
||||||
|
method: 'post', |
||||||
|
data |
||||||
|
}) |
||||||
|
|
||||||
|
// 删除
|
||||||
|
export const remove = params => |
||||||
|
request({ |
||||||
|
url: '/api/blade-desk/BA/BatConfig/remove', |
||||||
|
method: 'post', |
||||||
|
params |
||||||
|
}) |
||||||
Loading…
Reference in new issue