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