jiangping
2025-06-16 b767c567654acfa7da2429895dc9f6c990124274
company/src/api/business/solutionsBase.js
@@ -17,6 +17,16 @@
  return request.post('/business/solutionsBase/updateById', data)
}
// 列表查询
export function list (data) {
  return request.post('/business/solutionsBase/list', data)
}
// 禁用启用
export function updateStatus (data) {
  return request.post('/business/solutionsBase/updateStatus', data)
}
// 删除
export function deleteById (id) {
  return request.get(`/business/solutionsBase/delete/${id}`)