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