WXL
2024-02-20 c0b29ee03f4f6c984f35618bfa669ba3f2ab6517
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',
  })
}