yxh
yxh
2025-05-23 8022f7036945b75f82f2dfc43055623f81ed98f6
src/api/project/funddetailshared.js
@@ -20,7 +20,7 @@
// 新增费用申请明细
export function addFunddetailshared(data) {
  return request({
    url: '/project/funddetailshared',
    url: '/project/funddetailshared/add',
    method: 'post',
    data: data
  })
@@ -29,8 +29,8 @@
// 修改费用申请明细
export function updateFunddetailshared(data) {
  return request({
    url: '/project/funddetailshared',
    method: 'put',
    url: '/project/funddetailshared/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除费用申请明细
export function delFunddetailshared(id) {
  return request({
    url: '/project/funddetailshared/' + id,
    method: 'delete'
    url: '/project/funddetailshared/remove/' + id,
    method: 'get',
  })
}