fuliqi
2024-08-20 a6842851a844e63a8766d63c5410a8e2f27a7d45
src/api/platform/home.js
@@ -42,10 +42,19 @@
  })
}
// 考核预警
export function checkScore() {
  return request({
    url: '/home/checkScore',
    method: 'get'
  })
}
// 核算报表
export function calculate() {
export function calculate(category) {
  return request({
    url: '/home/calculate',
    method: 'get'
    method: 'get',
    params: { category }
  })
}