yxh
yxh
2024-01-05 26c14f0c6defe02f2b6f15b498bcd454461ee7a8
src/api/project/funddetailshared.js
@@ -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',
  })
}