yxh
yxh
2024-01-05 26c14f0c6defe02f2b6f15b498bcd454461ee7a8
src/api/project/fund.js
@@ -47,6 +47,14 @@
    data: data
  })
}
// 计算费用申请主
export function TotalcalculationFn(data) {
  return request({
    url: '/project/fund/totaltax',
    method: 'post',
    data: data
  })
}
// 修改费用申请主
// export function updateFund(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
  })
}