jiangping
2024-01-26 a76c5c86ac9af71da45bf78c825a2c7aa843b4c8
company/src/api/business/solutions.js
@@ -12,7 +12,27 @@
    return request.post('/business/solutions/create', data)
}
// 查询全部保险方案
export function all (data) {
    return request.post('/business/solutions/list', data)
}
// 禁用启用
export function updateStatus (data) {
    return request.post('/business/solutions/updateStatus', data)
}
// 修改
export function updateById (data) {
    return request.post('/business/solutions/updateById', data)
}
// 根据ID查询
export function solutionsId (id) {
    return request.get(`/business/solutions/${id}`)
}
// 查询企业全部关联方案
export function listForCompany (data) {
    return request.post('/business/companySolution/listForCompany', data)
}