xiangpei
2024-08-15 cdcd42c6e24b6ede604fab2e9437bbd34930fc23
src/api/platform/home.js
@@ -24,4 +24,37 @@
    method: 'get',
    params: data
  })
}
// 运维到期预警
export function ywPoint() {
  return request({
    url: '/home/ywPoint',
    method: 'get'
  })
}
// 运维单位超期责任数排名
export function ywUnitCount() {
  return request({
    url: '/home/ywUnitCount',
    method: 'get'
  })
}
// 考核预警
export function checkScore() {
  return request({
    url: '/home/checkScore',
    method: 'get'
  })
}
// 核算报表
export function calculate(category) {
  return request({
    url: '/home/calculate',
    method: 'get',
    params: { category }
  })
}