龚焕茏
2024-08-15 ddaa870224aa1c12b05ff2ac242c2283d3e54241
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 }
  })
}