xiangpei
2024-09-03 16eb67ab6b103663d30cad9ba74360f982e131cb
src/api/platform/calculate-report.js
@@ -52,10 +52,27 @@
}
// 添加核算报告
export const addCalculateReport = (params) => {
export const addCalculateReport = (data) => {
    return axios({
        url: "/calculate-report/",
        method: "POST",
        data: params
        data: data
    })
}
// 回填金额
export const backfill = (data) => {
  return axios({
    url: "/calculate-report/backfill/money",
    method: "POST",
    data: data
  })
}
// 修改发布状态
export const updatePublishStatus = (data) => {
  return axios({
    url: "/calculate-report/status/" + data,
    method: "PUT",
  })
}