jiangping
2025-06-17 78a173f85f8a4666d83cf8d900f04dd9f8e3e127
company/src/api/business/solutions.js
@@ -13,7 +13,10 @@
}
// 查询全部保险方案
export function all (data) {
export function all (data, type) {
    if (!type) {
        data.status = 0
    }
    return request.post('/business/solutions/list', data)
}
@@ -47,3 +50,7 @@
    return request.get(`/business/solutions/getUseList?companyId=${companyId}&dateType=${dateType}`)
}
// 根据ID删除
export function deleteById (id) {
    return request.get(`/business/solutions/delete/${id}`)
}