jiangping
2024-02-01 f6b0e262db2af5ca2e5ed76f95e746c1dd3c58e3
platform/src/api/business/solutions.js
@@ -1,38 +0,0 @@
import request from '../../utils/request'
// 查询
export function fetchList (data) {
    return request.post('/business/solutions/page', data, {
        trim: true
    })
}
// 创建
export function create (data) {
    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)
}