You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
744 B
37 lines
744 B
import request from '@/axios'; |
|
|
|
// 列表接口 |
|
export const getList = params =>{ |
|
return request({ |
|
url:'/api/blade-desk/QA/LiquidTankReportConfig/list', |
|
method:'get', |
|
params |
|
}) |
|
} |
|
|
|
// 新增 |
|
export const addBasic = (data) =>{ |
|
return request({ |
|
url:"/api/blade-desk/QA/LiquidTankReportConfig/save", |
|
method:'post', |
|
data |
|
}) |
|
} |
|
|
|
// 修改 |
|
export const editBasic = (data) =>{ |
|
return request({ |
|
url:'/api/blade-desk/QA/LiquidTankReportConfig/update', |
|
method:"post", |
|
data |
|
}) |
|
} |
|
|
|
// 删除 |
|
export const deleteBasic = (params) =>{ |
|
return request({ |
|
url:'/api/blade-desk/QA/LiquidTankReportConfig/remove', |
|
method:'post', |
|
params |
|
}) |
|
} |