1
WXL
2023-10-07 1347d3ef8a41ac9f5e0f43f2861b9cd6ef5ce454
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',
  })
}