yxh
2026-07-27 f92c4c5b4961830c607018561d19142c5d777e1e
src/api/project/distributedetail.js
@@ -20,7 +20,7 @@
// 新增专家费用分发汇总明细
export function addDistributedetail(data) {
  return request({
    url: '/project/distributedetail',
    url: '/project/distributedetail/add',
    method: 'post',
    data: data
  })
@@ -29,8 +29,8 @@
// 修改专家费用分发汇总明细
export function updateDistributedetail(data) {
  return request({
    url: '/project/distributedetail',
    method: 'put',
    url: '/project/distributedetail/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除专家费用分发汇总明细
export function delDistributedetail(id) {
  return request({
    url: '/project/distributedetail/' + id,
    method: 'delete'
    url: '/project/distributedetail/remove/' + id,
    method: 'get'
  })
}