MrShi
2024-11-22 ba5f8ce99b414a89d1e21a650321bf373773e7ae
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}`)