WXL
2024-02-20 c0b29ee03f4f6c984f35618bfa669ba3f2ab6517
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
  })
@@ -67,7 +75,7 @@
// 删除费用申请主
export function delFund(id) {
  return request({
    url: '/project/fund/' + id,
    url: '/project/fund/remove/' + id,
    method: 'get'
  })
}
@@ -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
  })
}