11
WXL
2024-03-20 40e702344f3d35e251bb098d1227fdea74ee8e4e
src/api/project/fund.js
@@ -42,7 +42,15 @@
// 新增费用申请主
export function addFund(data) {
  return request({
    url: '/project/fund',
    url: '/project/fund/add',
    method: 'post',
    data: data
  })
}
// 计算费用申请主
export function TotalcalculationFn(data) {
  return request({
    url: '/project/fund/totaltax',
    method: 'post',
    data: data
  })
@@ -175,4 +183,13 @@
    url: '/project/fund/addFundSharedInfo/' + id,
    method: 'get'
  })
}
//手动计算
export function ManualCalculation(data) {
  return request({
    url: '/project/funddetail/calculateTax',
    method: 'post',
    data: data
  })
}