MrShi
2024-11-16 49522fcc80c31225bcd7bab78315206567e84146
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}`)
}